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

20 lines
272 B
Go

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