Examples of IZone


Examples of buildcraft.api.core.IZone

  @Override
  public IZone getZoneToWork() {
    if (linkedDockingStation instanceof DockingStation) {
      for (StatementSlot s : new ActionIterator(((DockingStation) linkedDockingStation).getPipe().pipe)) {
        if (s.statement instanceof ActionRobotWorkInArea) {
          IZone zone = ActionRobotWorkInArea.getArea(s);

          if (zone != null) {
            return zone;
          }
        }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.