private void ChangeActiveGamePhase(GamePhaseEnum gamePhase)
 {
     if (_activeGamePhase != null)
     {
         _activeGamePhase.IsVisible = false;
     }
     _activeGamePhase = _gamePhases[gamePhase];
     _activeGamePhase.Init();
     _activeGamePhase.IsVisible = true;
 }
예제 #2
0
 public override void Init()
 {
     _activeGamePhase.Init();
 }