A bare bone implementation of Pong game written in Cpp2 (Cppfront) with SFML
- C++20 capable compilers
- CMake 3.23+
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release # -G Ninja
cmake --build buildThen run the executable:
./build/pong| Key | Action |
|---|---|
| space | Start the game |
| q | Quit the game |
| r | Reset the game |
| w | Move left paddle up |
| s | Move left paddle down |
| arrow up | Move right paddle up |
| arrow down | Move right paddle down |
