Commitd3ba4845Recorded29 Mar 2026Repositorysigil-raylib

Add README

Changed
 README.md | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)
Diff
README.mdadded
@@ -0,0 +1,31 @@
+1
# sigil-raylib
+2
+3
Raylib game development bindings for [Sigil](https://codeberg.org/sigil/sigil).
+4
+5
Provides FFI bindings to the [Raylib](https://www.raylib.com/) library for game development in Sigil applications, including window management, 2D graphics rendering, and input handling.
+6
+7
## Modules
+8
+9
| Module | Purpose |
+10
|--------|---------|
+11
| `(raylib)` | Main module, re-exports core functionality |
+12
| `(raylib core)` | Core types, colors, and initialization |
+13
| `(raylib window)` | Window creation and management |
+14
| `(raylib graphics)` | 2D drawing, textures, shapes |
+15
| `(raylib input)` | Keyboard, mouse, and gamepad input |
+16
+17
## Dependencies
+18
+19
- sigil-stdlib
+20
- sigil-ffi
+21
- Raylib C library (must be installed on the system)
+22
+23
## Build
+24
+25
```sh
+26
guix shell -m ../sigil/manifest.scm -- sigil build sigil-raylib --redirects dev-redirects.sgl
+27
```
+28
+29
## License
+30
+31
BSD-3-Clause