Exemplo n.º 1
0
 public TacticObjectInput(TacticBlock block, Type type = null, object defaultValue = null, TacticOutput connection = null)
     : base(block, type, connection)
 {
     DefaultValue = defaultValue;
 }
Exemplo n.º 2
0
 public TacticInput(TacticBlock block, Type type = null, TacticOutput connection = null)
 {
     Block           = block;
     Type            = type ?? typeof(object);
     ConnectedOutput = connection;
 }
Exemplo n.º 3
0
 public TacticFormulaInput(TacticBlock block, Type type = null, IFormula defaultValue = null, TacticOutput connection = null)
     : base(block, type, connection)
 {
     DefaultValue = defaultValue;
 }