17 lines
293 B
Scheme
17 lines
293 B
Scheme
(module (bitter-duel) ()
|
|
(import scheme
|
|
(chicken base)
|
|
raylib
|
|
(imugi core)
|
|
(imugi input)
|
|
(main-menu)
|
|
(arena))
|
|
|
|
(register-action 'click 'mouse-press MOUSE_BUTTON_LEFT)
|
|
|
|
((main-menu (lambda ()
|
|
(display "Loading game scene...")
|
|
(newline)
|
|
((arena)))))
|
|
|
|
(create-window))
|