A pong version with 4 paddles all controlled by your cursor. It's implemented in C using SDL for graphics
- Download the SDL Development Libraries from https://www.libsdl.org/download-2.0.php
- Double click on the .dmg
- Copy the SDL2.framework to /Library/Frameworks/
- Download the code
$ git clone https://github.com/noahhaasis/pong_ultimate.git
- Move into the project directory
$ cd pong_ultimate
- Build the project
$ gcc -ggdb3 -std=c11 -Wall -c -o pong_ultimate.o pong_ultimate.c
$ gcc -ggdb3 -std=c11 -Wall -framework SDL2 -o pong_ultimate pong_ultimate.o
$ ./pong_ultimate