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

17
actor.def.go Normal file
View File

@@ -0,0 +1,17 @@
package pncdsl
import "image/color"
type Character struct {
Name string
Sprite string // Asset.Name (placeholder if missing)
Animations map[string]AnimationClip
Speed float64
SpeechColor color.Color
Start Point
// Size hints used when the sprite is a placeholder rectangle.
W, H float64
}
func (c Character) GetName() string { return c.Name }
func (c Character) TypeLabel() string { return "character" }