initial commit

This commit is contained in:
2026-05-25 21:28:04 +02:00
commit d74acc58de
22 changed files with 570 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
package domain
import (
"image/color"
p "git.teletypegames.org/games/pncdsl"
)
func definePlayer(g *p.Game) {
g.CharacterManager.Register(p.Character{
Name: "player",
Sprite: "spr/player",
Speed: 80,
SpeechColor: color.RGBA{255, 230, 160, 255},
W: 28,
H: 62,
})
}