Remove participating, add pot to Player

master
Bel LaPointe 2021-03-13 23:44:35 -06:00
parent bce32ed6a3
commit b72c48f705
1 changed files with 7 additions and 7 deletions

View File

@ -1,13 +1,13 @@
package entity
type Player struct {
ID string
Name string
Card Card
Balance Currency
Active bool
Participating bool
Checked bool
ID string
Name string
Card Card
Balance Currency
Pot Currency
Active bool
Checked bool
}
func (p Player) Empty() bool {