A simple action game where you dash through endlessly spawning drones to kill them. But be careful to dash through their weak point! This game was made in under a week for the Rutgers COGS Scarlet Game Jam 2022 (improvements will continue to be made). It is published on itch.io
- WASD - move
- SPACE - dash
- Simply dash through the enemies along the dotted line while dodging their bullets
- Clone repository
- Install CMake
- Install the following dependencies (in a location CMake can locate):
sdl2
sdl2_image
sdl2_ttf
sdl2_mixer
- From the root of the project directory, create a
build
directory, and runCMakeLists.txt
from there:mkdir build
cd build
cmake ..
- Or, if on unix, simply
make all
from the root directory