tome_lib/player.go

10 lines
185 B
Go
Raw Normal View History

2021-10-01 12:43:55 -04:00
package tome_lib
type Player struct {
Name string `json:"name"`
Id int `json:"id"`
Hand []*Card `json:"hand"`
Life int `json:"life"`
Ready bool `json:"ready"`
}