Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 959 Bytes

README.md

File metadata and controls

32 lines (22 loc) · 959 Bytes

Simple Journey

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.

Manual

Link to the repo: https://github.com/Laynholt/simple_journey.git

For Linux:

  1. git clone https://github.com/Laynholt/simple_journey.git
  2. cd simple_journey/src
  3. gcc -o simple.out simple.c config.c functions.c kbhit.c
  4. clear
  5. ./simple.out

For Window you can clone this project on the Visual Studio project.

Linux version

Screen-466

Windows version

Screen-467

Special thanks

Used repos:

  1. https://github.com/lihexali/linux-kbhit // implements GetAsyncKeyState() on Linux.