initial commit

This commit is contained in:
2026-05-25 18:09:51 +02:00
commit df7219677e
58 changed files with 3646 additions and 0 deletions
+17
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" }