Ejemplo n.º 1
0
        public Page()
        {
            InitializeComponent();
            CompositionTarget.Rendering += CompositionTarget_Rendering;

            // Create the menu at the beginning
            _currentState = new MainMenuState(this);
            _currentState.Activate();
        }
Ejemplo n.º 2
0
    private void Start()
    {
        _playerBurger = _playerBurgerObject.GetComponent <IBurgerViewable>();
        _moneyHolder  = GetComponent <MoneyHolder>();

        LoadStates();

        _currentState = _allStates[1];
        _currentState.Activate(ChangeDebug);
    }
Ejemplo n.º 3
0
 private void StateActivate()
 {
     _currentState.Activate(ChangeDebug);
 }