Beispiel #1
0
        public void StartNewRound()
        {
            if (roundContainer.HasMoreRounds)
            {
                roundContainer.SpawnNextRound();
                Invoke("StartStandoff", standoffStartTime);

                RoundCompletedEvent.Invoke(roundContainer.CurrentRound);
            }
            else
            {
                gameController.InvokeLevelCompletedEvent(true);
            }
        }