A repository of small, functional but (mostly) incomplete classic arcade games rebuilt with Odin and Raylib. The idea came during an especially long and boring train ride, to see if I could build a somewhat functional breakout clone in a handful of hours.
- Breakout
- Snake
- Minesweeper
- More might be coming with more travel time ;)
You'll need Odin installed. Raylib is bundled with Odin in the vendor folder. Then just clone this repo and run:
cd breakout
odin run .
# Run with debug info's (e.g. tracking allocator)
odin run . -debugThese are intentionally simple implementations focusing on core game mechanics rather than polish. Perfect for train rides or lazy weekends when you want to code something fun without overthinking it.