Compare commits
2 commits
master
...
feature/ga
| Author | SHA1 | Date | |
|---|---|---|---|
| ac2284ce5c | |||
|
|
742017a4cd |
2 changed files with 19 additions and 5 deletions
18
engine/loader.scm
Normal file
18
engine/loader.scm
Normal 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))))
|
||||||
|
)
|
||||||
|
|
@ -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)
|
||||||
)
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue