From b72c48f7050dbdbfc6ed56188d2346cbd76ec3bf Mon Sep 17 00:00:00 2001 From: Bel LaPointe Date: Sat, 13 Mar 2021 23:44:35 -0600 Subject: [PATCH] Remove participating, add pot to Player --- src/entity/player.go | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/entity/player.go b/src/entity/player.go index e9cca05..ae916af 100644 --- a/src/entity/player.go +++ b/src/entity/player.go @@ -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 {