Ejemplo n.º 1
0
 protected StructureVoxel(Structure _owner, Location _loc) : base(_loc)
 {
     this.owner = _owner;
 }
Ejemplo n.º 2
0
 protected StructureVoxel(Structure _owner, WorldLocator wloc) : base(wloc)
 {
     this.owner = _owner;
 }
Ejemplo n.º 3
0
 public new static bool canBeBuilt(Location loc, Distance sz, ControlMode cm)
 {
     return(Structure.canBeBuilt(loc, sz, cm) && Structure.isOnTheGround(loc, sz));
 }