This is a recreation of the frogger arcade videogame made in C++ using the SGG library
Use the WASD button to move. You can also play in fullscreen mode by pressing the F button while in the main menu. You can also change the DEBUG_MODE to true in config.hpp so that you can view debug information such as the position of the player in real time and the bounding boxes of all game objects.
To build the project using CMake use the following commands:
mkdir build
cd build
cmake ..
cmake --build .