Esempio n. 1
0
        public void ExecuteDoAction(StateMachine context)
        {
            Messenger.Send($"Do : {this.Name}");

            this.OnDo?.Invoke(context);
        }
Esempio n. 2
0
        public void ExecuteExitAction(StateMachine context)
        {
            Messenger.Send($"Exit : {this.Name}");

            this.OnExit?.Invoke(context);
        }
Esempio n. 3
0
        public void ExecuteEntryAction(StateMachine context)
        {
            Messenger.Send($"Entry : {this.Name}");

            this.OnEntry?.Invoke(context);
        }