From c2085be2dd2a0cb3da05991847e35080915e547e Mon Sep 17 00:00:00 2001 From: Gene Pasquet Date: Sat, 18 Apr 2026 05:49:34 +0100 Subject: rename modules --- engine.scm | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'engine.scm') 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 -- cgit v1.2.3