A minimal, ready-to-use project template for building games and graphical applications with Hare and raylib.
This template provides a clean project structure, build configuration, and a simple example to help you start developing with raylib in Hare quickly.
- Minimal and clean project structure
- Pre-configured build setup
- Example window and render loop
- Easy to extend for larger projects
- Cross-platform (depending on raylib support as static library)
Before using this template, make sure you have:
- Hare compiler – https://harelang.org/
- A C toolchain (
gccorclang)
make -B && ./build/mainThe template includes a minimal raylib window example:
- Initializes raylib
- Opens a window
- Runs a render loop
- Cleans up resources on exit
You can modify main.ha to start building your project.
- Hare Language: https://harelang.org/
- Raylib Documentation: https://www.raylib.com/
- Raylib Examples: https://github.com/raysan5/raylib/tree/master/examples
- Raylib Cheatsheet: https://www.raylib.com/cheatsheet/cheatsheet.html