Files
horse/horse/character.go

13 lines
151 B
Go

package horse
type CharacterID int16
type Character struct {
ID CharacterID
Name string
}
func (c Character) String() string {
return c.Name
}