public TacticObjectInput(TacticBlock block, Type type = null, object defaultValue = null, TacticOutput connection = null) : base(block, type, connection) { DefaultValue = defaultValue; }
public TacticInput(TacticBlock block, Type type = null, TacticOutput connection = null) { Block = block; Type = type ?? typeof(object); ConnectedOutput = connection; }
public TacticFormulaInput(TacticBlock block, Type type = null, IFormula defaultValue = null, TacticOutput connection = null) : base(block, type, connection) { DefaultValue = defaultValue; }