aboutsummaryrefslogtreecommitdiff
path: root/engine.scm
diff options
context:
space:
mode:
Diffstat (limited to 'engine.scm')
-rw-r--r--engine.scm16
1 files changed, 8 insertions, 8 deletions
diff --git a/engine.scm b/engine.scm
index 958a3b1..0513df2 100644
--- a/engine.scm
+++ b/engine.scm
@@ -1,4 +1,4 @@
-(module downstroke-engine *
+(module (downstroke engine) *
(import scheme
(chicken base)
@@ -8,13 +8,13 @@
(srfi 69)
(only srfi-197 chain)
defstruct
- downstroke-world
- downstroke-input
- downstroke-physics
- downstroke-tween
- downstroke-assets
- downstroke-animation
- downstroke-renderer)
+ (downstroke world)
+ (downstroke input)
+ (downstroke physics)
+ (downstroke tween)
+ (downstroke assets)
+ (downstroke animation)
+ (downstroke renderer))
;; ── Game struct ────────────────────────────────────────────────────────────
;; defstruct auto-generates make-game, which we'll wrap with default values