예제 #1
0
파일: TacticNode.cs 프로젝트: ekolis/FrEee
 public TacticObjectInput(TacticBlock block, Type type = null, object defaultValue = null, TacticOutput connection = null)
     : base(block, type, connection)
 {
     DefaultValue = defaultValue;
 }
예제 #2
0
파일: TacticNode.cs 프로젝트: ekolis/FrEee
 public TacticInput(TacticBlock block, Type type = null, TacticOutput connection = null)
 {
     Block           = block;
     Type            = type ?? typeof(object);
     ConnectedOutput = connection;
 }
예제 #3
0
파일: TacticNode.cs 프로젝트: ekolis/FrEee
 public TacticFormulaInput(TacticBlock block, Type type = null, IFormula defaultValue = null, TacticOutput connection = null)
     : base(block, type, connection)
 {
     DefaultValue = defaultValue;
 }