Package erogenousbeef.core.multiblock.rectangular

Examples of erogenousbeef.core.multiblock.rectangular.PartPosition


 
  private IIcon getCasingIcon(IBlockAccess blockAccess, int x, int y, int z, int side) {
    TileEntity te = blockAccess.getTileEntity(x, y, z);
    if(te instanceof TileEntityReactorPart) {
      TileEntityReactorPart part = (TileEntityReactorPart)te;
      PartPosition position = part.getPartPosition();
      MultiblockReactor reactor = part.getReactorController();
      if(reactor == null || !reactor.isAssembled()) {
        return _icons[METADATA_CASING][DEFAULT];
      }
     
View Full Code Here

TOP

Related Classes of erogenousbeef.core.multiblock.rectangular.PartPosition

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.