pong++ is a clone of Atari's 1972 two-player game "pong" made with C++, It uses a custom engine/library called "tahmlib".
Currently tested for Windows 10.
pong++ was made with Visual Studio 2022. It uses the "Desktop Development with C++" module. Install those and run Visual Studio. Afterwards, click on "Clone a Repository".
Copy the repository location and choose a desired path on your PC.
Click on "clone" and you're all set, code away!
note: MAKE SURE TO SET THE CONFIGURATION TO x86 IF IT'S NOT ALREADY SET TO THAT, AS TAHMLIB HAS ONLY BEEN SET UP FOR 32 BIT AT THE MOMENT
ALL of the required libraries are included in the source code, no need to download/set them up.
- tahmlib : engine/gamedev library. Organizes video, audio, input, and rendering. Implements the game loop.
- SDL : window management, rendering, input, audio. Used by tahmlib.
- SDL_ttf : font management. Used by tahmlib.