Environment fixes
This commit is contained in:
parent
742017a4cd
commit
ac2284ce5c
2 changed files with 15 additions and 4 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
(module (engine loader)
|
(module (engine loader) ()
|
||||||
(import (scheme)
|
(import (scheme)
|
||||||
(chicken base)
|
(chicken base)
|
||||||
(chicken process-context)
|
(chicken process-context)
|
||||||
|
|
@ -12,6 +12,7 @@
|
||||||
(srfi 1)
|
(srfi 1)
|
||||||
(srfi 99))
|
(srfi 99))
|
||||||
|
|
||||||
|
(load (last (command-line-arguments))
|
||||||
(load (last (command-line-arguments)))
|
(lambda (form)
|
||||||
|
(eval form (interaction-environment))))
|
||||||
)
|
)
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,14 @@
|
||||||
|
(import (chicken random)
|
||||||
|
(engine core)
|
||||||
|
(engine math)
|
||||||
|
(engine components core)
|
||||||
|
(engine drawing)
|
||||||
|
(engine input)
|
||||||
|
(engine scene)
|
||||||
|
raylib
|
||||||
|
(srfi 1)
|
||||||
|
(srfi 99))
|
||||||
|
|
||||||
(register-event-bus 'turn-change)
|
(register-event-bus 'turn-change)
|
||||||
|
|
||||||
(define draw-text-entities
|
(define draw-text-entities
|
||||||
|
|
@ -366,4 +377,3 @@
|
||||||
|
|
||||||
((main-menu))
|
((main-menu))
|
||||||
(create-window)
|
(create-window)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue