Package buildcraft.transport.TileGenericPipe

Examples of buildcraft.transport.TileGenericPipe.SideProperties


    }
  }

  @Override
  public void rotateLeft(IBuilderContext context) {
    SideProperties props = new SideProperties ();

    props.readFromNBT(tileNBT);
    props.rotateLeft();
    props.writeToNBT(tileNBT);

    Item pipeItem = Item.getItemById(tileNBT.getInteger("pipeId"));

    if (BptPipeExtension.contains(pipeItem)) {
      BptPipeExtension.get(pipeItem).rotateLeft(this, context);
View Full Code Here

TOP

Related Classes of buildcraft.transport.TileGenericPipe.SideProperties

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.