| 1234567891011121314151617 |
- package player
- import "battlecamp-go/board"
- type Player struct {
- Id string `json:"id"`
- Dead bool `json:"dead"`
- Color string `json:"color"`
- Type Type `json:"type"`
- Pos board.Coordinate `json:"pos"`
- }
- type Type int
- const (
- TypeDefault Type = 1
- )
|