diff options
| author | Gene Pasquet <dev@etenil.net> | 2026-04-18 05:49:34 +0100 |
|---|---|---|
| committer | Gene Pasquet <dev@etenil.net> | 2026-04-18 05:49:34 +0100 |
| commit | c2085be2dd2a0cb3da05991847e35080915e547e (patch) | |
| tree | e89a0f3c347b3106b15b69b09dcf29f93a7ef627 /engine.scm | |
| parent | 38eee24832fe6da4f135cae455881ab97953b23a (diff) | |
rename modules
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 |
