Esempio n. 1
0
 public OutputLink(Building_BeltSplitter parent, IntVec3 pos)
 {
     this.parent   = parent;
     link          = null;
     this.position = pos;
     // TODO: any way to make filter null unless it's actually needed?
     //   maybe not?
     filter = new ThingFilter();
     filter.SetAllowAll(null);
 }
Esempio n. 2
0
 public OutputLink(Building_BeltSplitter parent, IBeltConveyorLinkable link)
     : this(parent, link.Position)
 {
     this.link = link;
 }