예제 #1
0
    public void StartNewGame(int playerCount)
    {
        _loadingScreen.Show(1.0f);

        SerializableGame newGameData = SerializableGame.NewGame(playerCount);

        StartCoroutine(loadGame(newGameData, 1.0f));
    }