tome_lib/player.go

11 lines
214 B
Go

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"`
Effects []*Effect
}