internal PokerGame(IrcBot bot, string channel)
        {
            players = new Queue<PokerPlayer>();
            State = GameState.CleanBoard;
            deck = new RandomDeck();
            run = false;

            this.bot = bot;
            this.channel = channel;
        }
        internal PokerGame(IrcBot bot, string channel)
        {
            players = new Queue <PokerPlayer>();
            State   = GameState.CleanBoard;
            deck    = new RandomDeck();
            run     = false;

            this.bot     = bot;
            this.channel = channel;
        }