Beispiel #1
0
 public PlayingUser(string name, int credit, Game game) : base(name, game)
 {
     this.credit   = credit;
     status        = "Active";
     roundsWon     = 0;
     roundsLost    = 0;
     biggestPotWon = 0;
     bestHand      = CardAnalyzer.HandRank.HighCard;
     userInput     = new UserInput();
     gainPerRound  = new List <int>();
 }
Beispiel #2
0
 public void SetFakeUserInput(Queue <string> inputs)
 {
     userInput = new FakeInput(inputs);
 }