TextRPG
일단 파일 구조는 아래와 같다.
├── Creature
| ├── Creature.cpp
│ ├── Creature.h
│ ├── Monster.cpp
| ├── Monster.h
| ├── Player.cpp
│ └── Player.h
├── Game
| ├── Field.cpp
│ ├── Field.h
│ ├── Game.cpp
│ └── Game.h
└── TextRPG.cpp
일단 파일 구조는 아래와 같다.
├── Creature
| ├── Creature.cpp
│ ├── Creature.h
│ ├── Monster.cpp
| ├── Monster.h
| ├── Player.cpp
│ └── Player.h
├── Game
| ├── Field.cpp
│ ├── Field.h
│ ├── Game.cpp
│ └── Game.h
└── TextRPG.cpp