18 lines
262 B
Go
18 lines
262 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,
|
|
}
|
|
}
|