Package buildcraft.builders

Examples of buildcraft.builders.TileConstructionMarker


      } else if (subTile instanceof TileConstructionMarker || subTile instanceof TileBuilder) {
        BlueprintBase blueprint = null;
        ForgeDirection orientation = ForgeDirection.EAST;

        if (subTile instanceof TileConstructionMarker) {
          TileConstructionMarker marker = (TileConstructionMarker) subTile;
          blueprint = ItemBlueprint.loadBlueprint(marker.itemBlueprint);
          orientation = marker.direction;
        } else if (subTile instanceof TileBuilder) {
          TileBuilder builder = (TileBuilder) subTile;
          blueprint = ItemBlueprint.loadBlueprint(builder.getStackInSlot(0));
View Full Code Here

TOP

Related Classes of buildcraft.builders.TileConstructionMarker

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.