Package buildcraft.builders

Examples of buildcraft.builders.TilePathMarker


    NBTTagCompound cpt = NBTUtils.getItemData(stack);

    if (tile instanceof TilePathMarker) {
      cpt.setByte("kind", (byte) 2);

      TilePathMarker pathTile = (TilePathMarker) tile;

      NBTTagList pathNBT = new NBTTagList();

      for (BlockIndex index : pathTile.getPath()) {
        NBTTagCompound nbt = new NBTTagCompound();
        index.writeTo(nbt);
        pathNBT.appendTag(nbt);
      }
View Full Code Here

TOP

Related Classes of buildcraft.builders.TilePathMarker

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.