Package erogenousbeef.bigreactors.common.multiblock.tileentity

Examples of erogenousbeef.bigreactors.common.multiblock.tileentity.TileEntityReactorGlass


  @Override
  public TileEntity createNewTileEntity(World world, int metadata) {
    switch(metadata) {
    case METADATA_REACTOR:
      return new TileEntityReactorGlass();
    case METADATA_TURBINE:
      return new TileEntityTurbinePartGlass();
    default:
      throw new IllegalArgumentException("Unrecognized metadata");
    }
View Full Code Here

TOP

Related Classes of erogenousbeef.bigreactors.common.multiblock.tileentity.TileEntityReactorGlass

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.