#Simple game test (SDL2) This project is a simple pong game implemented using SDL2.
src/
: Contains the source files (*.cpp
).include/
: Contains the header files (*.h
).
To build the project, use the provided Makefile
. Follow these steps:
Run the following command to compile the source files and link the executable:
make
Run the game using the following command:
./pong
Run the following command to remove all object files and the executable:
make clean