Package pneumaticCraft.common.inventory

Examples of pneumaticCraft.common.inventory.ContainerSecurityStationHacking


            case GUI_ID_UV_LIGHT_BOX:
                return new ContainerUVLightBox(player.inventory, (TileEntityUVLightBox)world.getTileEntity(x, y, z));
            case GUI_ID_SECURITY_STATION_INVENTORY:
                return new ContainerSecurityStationInventory(player.inventory, (TileEntitySecurityStation)world.getTileEntity(x, y, z));
            case GUI_ID_HACKING:
                return new ContainerSecurityStationHacking(player.inventory, (TileEntitySecurityStation)world.getTileEntity(x, y, z));
            case GUI_ID_UNIVERSAL_SENSOR:
                return new ContainerUniversalSensor(player.inventory, (TileEntityUniversalSensor)world.getTileEntity(x, y, z));
            case GUI_ID_PNEUMATIC_GENERATOR:
                return new ContainerPneumaticGenerator(player.inventory, (TileEntityPneumaticGenerator)world.getTileEntity(x, y, z));
            case GUI_ID_ELECTRIC_COMPRESSOR:
View Full Code Here


    private final ItemStack stopWorm = new ItemStack(Itemss.stopWorm);
    private final ItemStack nukeVirus = new ItemStack(Itemss.nukeVirus);

    public GuiSecurityStationHacking(InventoryPlayer player, TileEntitySecurityStation te){

        super(new ContainerSecurityStationHacking(player, te), te, Textures.GUI_HACKING);
        ySize = 238;
    }
View Full Code Here

TOP

Related Classes of pneumaticCraft.common.inventory.ContainerSecurityStationHacking

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.