Exemplo n.º 1
0
        private bool onZoneTransition(ZoneTransitionEvents.ZoneTransition evt)
        {
            switch (evt.State)
            {
            case ZoneTransitionEvents.ZoneTransition.States.Done:
                dailyChallengeService.ReloadChallenges(contentSchedulerService.CurrentContentDate());
                break;

            case ZoneTransitionEvents.ZoneTransition.States.Begin:
                dailyChallengeService.ClearLoadedDailies();
                partyGameManager.Reset();
                break;
            }
            return(false);
        }