Compare commits

...
Sign in to create a new pull request.

2 commits

Author SHA1 Message Date
ac2284ce5c Environment fixes 2026-04-28 15:33:58 +08:00
Jakub
742017a4cd Experimenting with a basic loader structure 2026-04-28 15:12:23 +08:00
2 changed files with 19 additions and 5 deletions

18
engine/loader.scm Normal file
View file

@ -0,0 +1,18 @@
(module (engine loader) ()
(import (scheme)
(chicken base)
(chicken process-context)
(engine core)
(engine math)
(engine components core)
(engine drawing)
(engine input)
(engine scene)
raylib
(srfi 1)
(srfi 99))
(load (last (command-line-arguments))
(lambda (form)
(eval form (interaction-environment))))
)

View file

@ -1,7 +1,4 @@
(module (tic-tac-toe) () (import (chicken random)
(import scheme
(chicken base)
(chicken random)
(engine core) (engine core)
(engine math) (engine math)
(engine components core) (engine components core)
@ -380,4 +377,3 @@
((main-menu)) ((main-menu))
(create-window) (create-window)
)