Package pneumaticCraft.client.gui

Examples of pneumaticCraft.client.gui.GuiChargingStation


            case GUI_ID_AIR_CANNON:
                return new GuiAirCannon(player.inventory, (TileEntityAirCannon)world.getTileEntity(x, y, z));
            case GUI_ID_PRESSURE_CHAMBER:
                return new GuiPressureChamber(player.inventory, (TileEntityPressureChamberValve)world.getTileEntity(x, y, z));
            case GUI_ID_CHARGING_STATION:
                return new GuiChargingStation(player.inventory, (TileEntityChargingStation)world.getTileEntity(x, y, z));
            case GUI_ID_ELEVATOR:
                return new GuiElevator(player.inventory, (TileEntityElevatorBase)world.getTileEntity(x, y, z));
            case GUI_ID_PNEUMATIC_HELMET:
                return new GuiPneumaticHelmet(new ContainerChargingStationItemInventory(player.inventory, (TileEntityChargingStation)world.getTileEntity(x, y, z)), (TileEntityChargingStation)world.getTileEntity(x, y, z));
            case GUI_ID_PRESSURE_CHAMBER_INTERFACE:
View Full Code Here

TOP

Related Classes of pneumaticCraft.client.gui.GuiChargingStation

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.