/OOP_MUD_Game

MUD Game for Object-Oriented-Programming Course

Primary LanguageC++

OOP_MUD_Game

File tree
.
├── Makefile
├── One_Way_Out.exe
├── README.md
├── include
│   ├── IO.h
│   ├── YouDead.h
│   ├── about_us.h
│   ├── attributes.h
│   ├── ending.h
│   ├── environment_setting.h
│   ├── food.h
│   ├── interact.h
│   ├── map.h
│   ├── play_music.h
│   └── start_menu.h
├── main.cpp
├── music
│   └── test_bgm.mp3
├── new
│   ├── new_attr.txt
│   ├── new_map1.txt
│   ├── new_map2.txt
│   ├── new_map3.txt
│   ├── new_map4.txt
│   ├── new_map5.txt
│   ├── new_map6.txt
│   └── new_map7.txt
├── pic
│   └── pic.txt
├── save
│   ├── save1.txt
│   ├── save2.txt
│   ├── save3.txt
│   ├── save4.txt
│   ├── save5.txt
│   ├── save6.txt
│   ├── save7.txt
│   └── save_attr.txt
└── src
    ├── IO.cpp
    ├── YouDead.cpp
    ├── about_us.cpp
    ├── attributes.cpp
    ├── ending.cpp
    ├── environment_setting.cpp
    ├── food.cpp
    ├── interact.cpp
    ├── map.cpp
    ├── play_music.cpp
    └── start_menu.cpp
Compile & Run
  • Windows
Compile
make
Run
点击One_Way_Out.exe运行