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