remove demo game

This commit is contained in:
2026-05-25 21:28:17 +02:00
parent b1ea3447a8
commit 76f910ab36
75 changed files with 115 additions and 815 deletions

10
actor.animation.go Normal file
View File

@@ -0,0 +1,10 @@
package pncdsl
// AnimationClip is a placeholder for sprite-sheet animation data. Not used
// for rendering yet — characters draw as flat colored rectangles in this
// milestone — but the field exists so domain code can reference it.
type AnimationClip struct {
Frames []Rectangle // source rects on the sprite sheet
FrameTime float64
Loop bool
}