public Game(int coins) { player = new PlayerInf(coins); peek = 0; for (int i = 1; i < 208; i++) { cld[i - 1] = RecognisingCard.StrToCard(i % 52); } diller = new DillerInf(); startgame++; }
public Game(double coins) { player = new PlayerInf(coins); peek = 0; for (int i = 0; i < 208; i++) { cld[i] = RecognisingCard.StrToCard(i % 52); } diller = new DillerInf(); startgame++; bot = new BotForBlackJack(208); }