Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shadmansaleh/snake_game
Simple snake game written in cpp. This was made as project for CSE-144 (OOP) course
https://github.com/shadmansaleh/snake_game
Last synced: about 2 months ago
JSON representation
Simple snake game written in cpp. This was made as project for CSE-144 (OOP) course
- Host: GitHub
- URL: https://github.com/shadmansaleh/snake_game
- Owner: shadmansaleh
- License: gpl-3.0
- Created: 2022-11-29T20:53:24.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-12-18T09:33:41.000Z (about 2 years ago)
- Last Synced: 2024-10-12T22:49:12.005Z (3 months ago)
- Language: C++
- Homepage:
- Size: 3.16 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Snake_Game
Simple snake game written in cpp### How to build
#### Requirements:
- c++ compiler (g++)
- cmake
- cmake generator (Gnu Makefile / ninja/ ...)#### Instructions:
```bash
# clone repo:git clone https://github.com/shadmansaleh/Snake_Game
# generate build scripts with cmake
cmake -B build/ -S ./
# Run generated build scripts. Assuming you're using gnu makefile
make -C build
# Run the game windows
build\shake.exe
# Run the game linux/mac
build/snake
```### ScreenShots
![ScreenShot1](./assets/Images/Screenshot_20221217_222842.jpeg)
![ScreenShot2](./assets/Images/Screenshot_20221217_222932.jpeg)
![ScreenShot3](./assets/Images/Screenshot_20221217_223331.jpeg)
![ScreenShot4](./assets/Images/Screenshot_20221217_223411.jpeg)