diff options
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 25 |
1 files changed, 25 insertions, 0 deletions
@@ -0,0 +1,25 @@ +# Description +- A very basic Pacman clone done in python using pygame library + +# Run +- Open your favourite terminal + +```bash +cd src +python3 macpan.py +``` + +# TODO +## Must DO +- [X] Setup the basic player movement mechanics +- [ ] Load the proper sprites for the map +- [ ] Setup collision with walls +- [ ] Replace the yellow circle with a pacman sprite +- [ ] Setup the sprite animation for pacman +- [ ] Add the ghosts in the game +- [ ] Develop an algorithm to make the ghosts find pacman in the map(BFS, A*) +- [ ] Setup the sprite animation for the ghosts + +## Optional +- [ ] Setup a menu for the game +- [ ] Setup a proper sfx/audio for the game |
