Esempio n. 1
0
        public void StartGame()
        {
            MainDeck.Mix();
            h_GetCards();
            Card pMainCard = GetNextCard();

            if (pMainCard == null)
            {
                throw new GameOverException();
            }
            MainCard = pMainCard;
            MainDeck.CardList.Insert(0, pMainCard);

            Master = 0;
            Slave  = h_GetNextSide(Master);

            h_SetDefaultRights();
        }