Package erogenousbeef.bigreactors.common.block

Examples of erogenousbeef.bigreactors.common.block.BlockBRDevice


 
  public static void registerDevices(int id, boolean require) {
    if(BigReactors.blockDevice == null) {
      BRConfig.CONFIGURATION.load();

      BigReactors.blockDevice = new BlockBRDevice(Material.iron);
      GameRegistry.registerBlock(BigReactors.blockDevice, ItemBlockBigReactors.class, "BRDevice");
     
      OreDictionary.registerOre("brDeviceCyaniteProcessor", ((BlockBRDevice)BigReactors.blockDevice).getCyaniteReprocessorItemStack());
     
      BRConfig.CONFIGURATION.save();
View Full Code Here


    }
  }
 
  protected void updateInventoryExposures() {
    int facing = _entity.getFacing();
    BlockBRDevice deviceBlock = (BlockBRDevice)BigReactors.blockDevice;
    for(int side = 0; side < 6; side++) {
      if(side == facing) { continue; }
      exposureButtons[side].setIcon( deviceBlock.getIconFromTileEntity(_entity, BlockBRDevice.META_CYANITE_REPROCESSOR, side) );
    }
  }
View Full Code Here

TOP

Related Classes of erogenousbeef.bigreactors.common.block.BlockBRDevice

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.