Exemple #1
0
    public void StartGame()
    {
        // starts the game
        // hide the move order screen
        GameGUI.HideMoveOrderScreen();

        // the first player in the list goes first
        currPlayerIndex = 0;
        GameData.SetCurrPlayer(players[0]);
        RollDie(GameData.Mode.NormalRoll);
    }