AtlatestRepositorysigil-raylib

sigil-raylib / tree / srcraylib.sgl

1;;; (raylib) is split into sub-modules to stay under the 256-define compiler limit.
2;;; Import the sub-modules you need directly:
3;;;
4;;; (raylib core) — library handle, struct layouts, colors, timing, file system
5;;; (raylib window) — window management, cursor
6;;; (raylib input) — keyboard, mouse, gamepad, touch, gesture + constants
7;;; (raylib graphics) — drawing, shapes, collision, text + graphics constants
8;;;
9;;; Example:
10;;; ```scheme
11;;; (import (sigil core)
12;;; (raylib core)
13;;; (raylib window)
14;;; (raylib input)
15;;; (raylib graphics))
16;;; ```