Dynamic_Games.IncInformation.Game.Deal.wasAllIn C# (CSharp) Method

wasAllIn() private method

private wasAllIn ( ) : bool
return bool
        private bool wasAllIn()
        {
            bool was = false;
            foreach (Player.Player p in table.players)
            {
                if (p.bet != 0)
                    was = true;
            }
            return was;
        }