Package buildcraft.core

Examples of buildcraft.core.ZonePlan


    inv.readFromNBT(nbt.getCompoundTag("inv"));

    for (int i = 0; i < selectedAreas.length; ++i) {
      if (nbt.hasKey("selectedArea[" + i + "]")) {
        selectedAreas[i] = new ZonePlan();
        selectedAreas[i].readFromNBT(nbt.getCompoundTag("selectedArea[" + i + "]"));
      }
    }
  }
View Full Code Here


    }
  }

  public Object selectArea(int index) {
    if (selectedAreas[index] == null) {
      selectedAreas[index] = new ZonePlan();
    }

    currentSelectedArea = index;

    return selectedAreas[index];
View Full Code Here

    currentSelection.createDynamicTexture();

    newSelection = new BCDynamicTexture(1, 1);
    newSelection.createDynamicTexture();

    getContainer().currentAreaSelection = new ZonePlan();

    cx = zonePlan.xCoord;
    cz = zonePlan.zCoord;

    resetNullSlots(16);
View Full Code Here

TOP

Related Classes of buildcraft.core.ZonePlan

Copyright © 2018 www.massapicom. 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.