Ejemplo n.º 1
0
        //Main
        private void Awake()
        {
            var uIInput = GetComponent <IInput>();

            _startingInGame = uIInput.StartInGame();
            GetHomeScreenBranches();
            _historyTrack  = EZInject.Class.NoParams <IHistoryTrack>();
            _cancelHandler = EZInject.Class.NoParams <ICancel>();
            _audioService  = EZInject.Class.WithParams <IAudioService>(this);
            AddService();
            _myDataHub = new DataHub(MainCanvasRect);
            _myDataHub.OnAwake();
        }
Ejemplo n.º 2
0
 public MoveBackInHistory(IHistoryTrack historyTracker)
 {
     _historyTracker        = historyTracker;
     _historyListManagement = historyTracker.HistoryListManagement;
 }
Ejemplo n.º 3
0
 public NewSelectionProcess(IHistoryTrack historyTracker)
 {
     _historyTracker    = historyTracker;
     _historyManagement = historyTracker.HistoryListManagement;
 }
Ejemplo n.º 4
0
 public MultiSelectSystem(IHistoryTrack historyTrack)
 {
     _historyTracker = historyTrack;
 }
Ejemplo n.º 5
0
 public HistoryListManagement(IHistoryTrack historyTracker)
 {
     _historyTracker = historyTracker;
 }
Ejemplo n.º 6
0
 public virtual void OnDestroy()
 {
     UnObserveEvents();
     _myDataHub    = null;
     _historyTrack = null;
 }
Ejemplo n.º 7
0
 public virtual void UseEZServiceLocator()
 {
     _myDataHub    = EZService.Locator.Get <IDataHub>(this);
     _historyTrack = EZService.Locator.Get <IHistoryTrack>(this);
 }
Ejemplo n.º 8
0
 public ManagePopUpHistory(IHistoryTrack historyTracker) => _historyTracker = historyTracker;
Ejemplo n.º 9
0
 public void UseEZServiceLocator()
 {
     _inputScheme    = EZService.Locator.Get <InputScheme>(this);
     _uiHistoryTrack = EZService.Locator.Get <IHistoryTrack>(this);
     _myDataHub      = EZService.Locator.Get <IDataHub>(this);
 }