Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 714 Bytes

README.md

File metadata and controls

12 lines (10 loc) · 714 Bytes

Snake-Game

This game is running in the console. The technology used is C++ (good language for optimization). That type of game it's good for learning C++ the right way, also a good deep dive into game development.

Setup

Open a console in the same directory as the main.cpp file is. Run the following commands:

>>> chcp 65001 This will allow the console to display Unicode symbols

>>> g++ main.cpp This will build the code written in "main.cpp" file

>>> ./a.exe This will run the .exe file