Package pneumaticCraft.common.inventory

Examples of pneumaticCraft.common.inventory.ContainerChargingStation


            case GUI_ID_AIR_CANNON:
                return new ContainerAirCannon(player.inventory, (TileEntityAirCannon)world.getTileEntity(x, y, z));
            case GUI_ID_PRESSURE_CHAMBER:
                return new ContainerPressureChamber(player.inventory, (TileEntityPressureChamberValve)world.getTileEntity(x, y, z));
            case GUI_ID_CHARGING_STATION:
                return new ContainerChargingStation(player.inventory, (TileEntityChargingStation)world.getTileEntity(x, y, z));
            case GUI_ID_ELEVATOR:
                return new ContainerElevator(player.inventory, (TileEntityElevatorBase)world.getTileEntity(x, y, z));
            case GUI_ID_PNEUMATIC_HELMET:
            case GUI_ID_DRONE:
                return new ContainerChargingStationItemInventory(player.inventory, (TileEntityChargingStation)world.getTileEntity(x, y, z));
View Full Code Here


public class GuiChargingStation extends GuiPneumaticContainerBase<TileEntityChargingStation>{
    private GuiButton guiSelectButton;

    public GuiChargingStation(InventoryPlayer player, TileEntityChargingStation te){

        super(new ContainerChargingStation(player, te), te, Textures.GUI_CHARGING_STATION_LOCATION);
    }
View Full Code Here

TOP

Related Classes of pneumaticCraft.common.inventory.ContainerChargingStation

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.