This is the pong game recreated using C++ and SDL2 library. It supports sprite and font loading, allowing you to replace files as long as the same file name is kept.
Windows build can be downloaded here. Just unpack to any folder and run pong.exe.
- CMake (version 3.13 or higher recommended)
- C++ Compiler: Compatible with C++11 standard
- SDL2 (>= 2.0.20)
- SDL2-ttf (>= 2.0.18)
- SDL2-image (>= 2.0.5)
git clone https://github.com/NemGam/Pong.git
cd Pong
From the project root directory, generate the build system:
cmake -S . -B build
Compile and install the project:
cmake --build build && cmake --install build
Execute the compiled application:
./dist/bin/pong