public void Ante(BlackjackGame game)
 {
     game.Players.Select(p => p.Bettor.BetAmount = game.AnteAmount).ToArray();  // set the amount to bet for all players to the ante amount
     game.BetAllPlayers();
     game.State = BlackjackGame.AntePlacedState;
 }
 public void Ante(BlackjackGame game)
 {
     game.Players.Select(p => p.Bettor.BetAmount = game.AnteAmount).ToArray();  // set the amount to bet for all players to the ante amount
     game.BetAllPlayers();
     game.State = BlackjackGame.AntePlacedState;
 }