10 lines
185 B
Go
10 lines
185 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"`
|
||
|
}
|