コード例 #1
0
ファイル: StateBuilder.cs プロジェクト: Cushmily/wFsm
 public StateBuilder <TState, TParentBuilder> OnExit(Action <TState> action)
 {
     ContractState.SetExitAction(() => action(ContractState));
     return(this);
 }