예제 #1
0
 public OutputItem(int inputCount, DynamicID <ItemID> id, string name = null, MachineDraw draw = null)
 {
     InputCount = inputCount;
     ID         = id;
     Name       = name;
     Draw       = draw;
 }
예제 #2
0
 public OutputItem(DynamicID <ItemID> id, string name = null, MachineDraw draw = null) : this(1, id, name, draw)
 {
 }