public void Flow(FlowInit init, FlowLogic logic, Act endLogic = null) { var flow = new FlowInfo(); flow.Init = init; flow.Logic = logic; flow.EndLogic = endLogic; Flows.Add(flow); }
public void Flow(FlowInit init, FlowLogic logic, Act endLogic = null) { FlowInfo flow = new FlowInfo { Init = init, Logic = logic, EndLogic = endLogic }; Flows.Add(flow); }