shadmansaleh / Snake_Game

Simple snake game written in cpp. This was made as project for CSE-144 (OOP) course

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Snake_Game

Simple snake game written in cpp

How to build

Requirements:

  • c++ compiler (g++)
  • cmake
  • cmake generator (Gnu Makefile / ninja/ ...)

Instructions:

# clone repo:

git clone https://github.com/shadmansaleh/Snake_Game

# generate build scripts with cmake

cmake -B build/ -S ./

# Run generated build scripts. Assuming you're using gnu makefile

make  -C build

# Run the game windows

build\shake.exe

# Run the game linux/mac

build/snake

ScreenShots

ScreenShot1 ScreenShot2 ScreenShot3 ScreenShot4

About

Simple snake game written in cpp. This was made as project for CSE-144 (OOP) course

License:GNU General Public License v3.0


Languages

Language:C++ 92.0%Language:CMake 6.3%Language:Makefile 1.8%