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 system5
;;; (raylib window) — window management, cursor6
;;; (raylib input) — keyboard, mouse, gamepad, touch, gesture + constants7
;;; (raylib graphics) — drawing, shapes, collision, text + graphics constants8
;;;9
;;; Example:10
;;; ```scheme11
;;; (import (sigil core)12
;;; (raylib core)13
;;; (raylib window)14
;;; (raylib input)15
;;; (raylib graphics))16
;;; ```