Package buildcraft.api.core

Examples of buildcraft.api.core.BlockIndex


  private TileEntityFurnace getUsableFurnace(BlockIndex b) {
    // reserve that furnace if found from the block reserve system

    for (ForgeDirection dir : ForgeDirection.VALID_DIRECTIONS) {
      BlockIndex index = new BlockIndex (b.x + dir.offsetX, b.y
          + dir.offsetY, b.z
          + dir.offsetZ);

      if (robot.getRegistry().isTaken(new ResourceIdBlock(index))) {
        continue;
View Full Code Here

TOP

Related Classes of buildcraft.api.core.BlockIndex

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.