Simple console game. \ O /
This is a simple console game that draws the generated landscape using ASCII characters.
-> To move, click: A | D. -> To exit: Esc.
This game can be started on Linux and Windows.
Link to the repo: https://github.com/Laynholt/simple_journey.git
For Linux:
- git clone https://github.com/Laynholt/simple_journey.git
- cd simple_journey/src
- gcc -o simple.out simple.c config.c functions.c kbhit.c
- clear
- ./simple.out
For Window you can clone this project on the Visual Studio project.
Used repos:
- https://github.com/lihexali/linux-kbhit // implements GetAsyncKeyState() on Linux.