You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

795 B

Snake Game in C++

A simple snake game, with terminal GUI implemented using ncurses library

Prerequisities

You need to install the following two packages:

  • libncurses5-dev : Developer’s libraries for ncurses
  • libncursesw5-dev : Developer’s libraries for ncursesw
  • gcc : C\C++ compiler
  • make : instalation tool Open up a terminal and type the folllowing commands
~$ sudo apt update && sudo apt upgrade
#Now to install compiler and instalation tool
~$ sudo apt-get install gcc make
#And the actuall library
~$ sudo apt-get install libncurses5-dev libncursesw5-dev

Downloading, Instalation and Running the Program

Now we will install and run teh program, but first let's download the repo:

~$ git clone https://github.com/VissaMoutafis/Snake-Game-in-C-
~$ cd Ch