https://github.com/matbme/isocross
https://github.com/matbme/isocross
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/matbme/isocross
- Owner: matbme
- Created: 2021-06-19T20:21:52.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-06-22T01:02:43.000Z (over 4 years ago)
- Last Synced: 2025-01-12T23:49:07.215Z (about 1 year ago)
- Language: C
- Size: 1.93 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# IsoCross
In this game, you will be challenged to created a path that doesn't cross a guards way! If it does, you're doomed... but if it doesn't, you'll find the treasures!!!!!

IsoCross supports all major PC operating systems (MacOS and Linux), with other versions coming soon for Xbox Series X and Playstation 5.
## Compiling
A Makefile is supported, which automatically identifies all `.cpp` and `.c` files
inside `/dev/src`. All you need to do in order to compile this masterpiece of
gaming is run:
```
cd dev
cmake . -G"Unix Makefiles"
make
./app
```
You can also clean the generated binaries by running:
```bash
$ cd dev
$ make clean
```