From 2a75c88de470a173067feee4df80cd8e3fb7a641 Mon Sep 17 00:00:00 2001 From: Gene Pasquet Date: Sun, 5 Apr 2026 15:34:21 +0100 Subject: Cleanup and egg! --- downstroke.egg | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 downstroke.egg (limited to 'downstroke.egg') diff --git a/downstroke.egg b/downstroke.egg new file mode 100644 index 0000000..b28c79d --- /dev/null +++ b/downstroke.egg @@ -0,0 +1,23 @@ +((version "0.1.0") + (synopsis "2D tile-driven game engine for Chicken Scheme, built on SDL2") + (author "Gene Pasquet") + (license "MIT") + (category games) + (dependencies sdl2 sdl2-image sdl2-ttf expat defstruct srfi-1 srfi-13 srfi-197 matchable simple-logger) + (components + (extension downstroke/entity + (source "entity.scm")) + (extension downstroke/tilemap + (source "tilemap.scm")) + (extension downstroke/world + (source "world.scm") + (component-dependencies downstroke/entity downstroke/tilemap)) + (extension downstroke/physics + (source "physics.scm") + (component-dependencies downstroke/entity downstroke/tilemap downstroke/world)) + (extension downstroke/input + (source "input.scm") + (component-dependencies downstroke/entity)) + (extension downstroke/renderer + (source "renderer.scm") + (component-dependencies downstroke/entity downstroke/tilemap downstroke/world)))) -- cgit v1.2.3