A simple pong game that I created with OpenGL in C.

Esc: Close the game
Return: Start a new game
W/S: Move left paddle up and down
Arrow-Keys: Move right paddle up and down
You might need to install the following libaries:
brew install libpng zlib harfbuzz brotli After that you should be able to run the game:
make mac #compile the game
build/pong #run the gameIf you have already installed make and mingw you can just compile and run the program like this:
make windows
build\pong.exeOtherwise you have to install those first. I recommend using Chocolatey:
choco install mingw
choco install make