Just a bit of fun making a retro game using C with SDL
You'll need to install the following:
- brew install SDL2
- brew install SDL2_image
- brew install SDL2_ttf
Compile with make
Then run the game with ./build/game
game/
├── assets/
│ └── OpenSans_Condensed-Regular.ttf
├── src/
│ ├── main.c
│ └── screens/
│ └── start.c
├── include/
│ └── start.h
└── build/
└── game