Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pk-cod3ch3mist/pac-man_gamebuild
A simple version of Pac-Man written in C++
https://github.com/pk-cod3ch3mist/pac-man_gamebuild
cpp macos pac-linux pac-man
Last synced: 25 days ago
JSON representation
A simple version of Pac-Man written in C++
- Host: GitHub
- URL: https://github.com/pk-cod3ch3mist/pac-man_gamebuild
- Owner: PK-cod3ch3mist
- Created: 2020-05-19T06:23:06.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-06-17T15:16:58.000Z (over 4 years ago)
- Last Synced: 2023-10-05T02:09:13.083Z (about 1 year ago)
- Topics: cpp, macos, pac-linux, pac-man
- Language: C++
- Homepage:
- Size: 10.7 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PAC-MAN_gameBuild
A simple version of Pac-Man written in C++. Needs no graphics support. Entirely based on ASCII art/characters!!The file pac.cpp contains code that will work on any macOS machine.
The file Pac_linux.cpp contains code that will work on any linux machine.If the Pac_linux file does not work correctly, note the following:
1.The program uses ANSI escape codes in which I used \u001b as the ESC character; try using \033 instead.
2.The program requires C++11 standard.
3.The program uses usleep method.
The program has been tested on machines running macOS.