A very small game written in C using raylib library
Throw colourful balls that bounce off the walls and floor, pretty much like you'd throw Angry Birds.
You can try the game here.
To build the game on your local machine it is required to have c compiler and raylib library with all it's prerequisites installed (see raylib docs how to achieve this).
Then you can build simply like this:
cc game.c -lraylib -lm -o ./build/gameAnd then run it:
./build/gameCurrently only web and Linux x86-64 prebuilded versions are available (see build/ directory or releases page).
v1.2.1
Updates
- Gravity was tweaked for a slightly better feel
Fixes
- Optimized the way objects are stored in memory
