A simple C++ project for game programming.
This project uses a Makefile for building and running the game.
To compile the source code, run the following command:
makeThis will create an executable file named game.
To run the game, use the following command:
make runAlternatively, you can run the executable directly:
./gameTo remove the compiled files, run:
make clean