/pong_clone

A Pong clone implemented in C++ and SDL2

Primary LanguageC++

Pong Clone

A clone of the classic Pong Game written in C++ with SDL2

Requirements

SDL2, SDL2_ttf, SDL2_mixer

Compiling and Running

mkdir build

A run.sh script is included as part of this repo to handle building, running, and removing the binary. You may use it by first setting its execute bit and then running the script:

sudo chmod +x run.sh
./run.sh

Alternatively, you may use the Makefile to generate the binary and run it yourself:

make all
./Pong