Exemple #1
0
        private void pcTurn()
        {
            eInputError inputError;

            Console.WriteLine("PC is picking cards...");
            m_GameLogic.ChooseCard(m_GameLogic.AiIndexCard(), out inputError);
            System.Threading.Thread.Sleep(1000); // to show the player the msg that pc is picking cards..
            drawGameTable();
            System.Threading.Thread.Sleep(500);  // to allow the player see what pc picked in first turn
            m_GameLogic.ChooseCard(m_GameLogic.AiIndexCard(), out inputError);
            drawGameTable();
        }