Beispiel #1
0
        static void Main(string[] args)
        {
            Cards     deck = new Cards();
            Player    p    = new Player();
            Bot       b    = new Bot();
            PokerGame game = new PokerGame(100, b, p, deck);

            p.SetStack(10000);
            b.SetStack(10000);
            game.PokerMatch();
        }