This is a basic game recreating the traditional arcade game Pong to
demonstrate the use of Thunder in conjunction with raylib.
This game is written in C++ because this is the only languages Thunder supports.
To compile pong you most complete the following:
- Install raylib
- Submodule Thunder in an initalised git project with the command
git submodule add https://github.com/KJ002/Thunder
- Compile code with g++/clang++ with the command
g++ main.cpp Thunder/include/thunder.cpp -o main -lraylib -lGL -lm -ldl -lrt -lX11 -lpthread -O3