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

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

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

            this.OnEntry?.Invoke(context);
        }