Terminal-based arcade game heavily inspired by Pac-Man, that allows players to build and play their own game levels.
- The game is implemented in C++ with an emphasis on OOP concepts like polymorphism and inheritance.
- The user interface is handled by the ncurses library.
- git
- g++
- ncurses
- make
- doxygen
- graphviz
Clone the project
git clone --depth 1 https://github.com/U1F928/pacman
Go into the project directory
cd pacman
Build the project
make all
Start the game
make run
| Action | Key |
|---|---|
| Quit | Esc |
| Move left | h |
| Move down | j |
| Move up | k |
| Move right | l |
