Devcontainer and collab documentation

This commit is contained in:
Jakub 2026-04-26 15:55:05 +08:00
parent 9be1526cb1
commit 0a21a14033
2 changed files with 20 additions and 13 deletions

View file

@ -184,16 +184,3 @@ Functions for evaluating the render queues. ~evaluate-render-queue~ evaluates a
(create-window process: (next-frame) close-predicate: (window-should-close?))
#+end_src
~create-window~ creates a window using the window parameters described above, sets the target frames per second, then enters a loop which runs the ~process:~ function (~next-frame~ by default) on each frame, unless ~close-predicate:~ (Raylib's ~window-should-close~ function by default) returns true, in which case the window is closed.
* Dependencies
The following Chicken dependencies are required:
- raylib
- SRFI-99
- SRFI-113
- SRFI-69
- csm
- SRFI-78
* Running
From the ~build~ directory, run ~csm -program test.engine .. && ./test.engine~ to run engine tests.