Files
realworld/inc/character.paul.go
T
2026-08-29 23:59:56 +02:00

20 lines
257 B
Go

package inc
import (
inkwell "git.teletypegames.org/engines/inkwell"
)
func init() {
CharacterManager.Register(Character{
Name: Paul,
Speed: 96,
W: 28,
H: 68,
Start: inkwell.Point{
X: 120,
Y: 232,
},
SpeechColor: Ink,
})
}