diff options
Diffstat (limited to 'engine.scm')
| -rw-r--r-- | engine.scm | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -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 |
