Package pneumaticCraft.client.gui

Examples of pneumaticCraft.client.gui.GuiProgrammer


            case GUI_ID_APHORISM_TILE:
                return new GuiAphorismTile((TileEntityAphorismTile)world.getTileEntity(x, y, z));
            case GUI_ID_OMNIDIRECTIONAL_HOPPER:
                return new GuiOmnidirectionalHopper(player.inventory, (TileEntityOmnidirectionalHopper)world.getTileEntity(x, y, z));
            case GUI_ID_PROGRAMMER:
                return new GuiProgrammer(player.inventory, (TileEntityProgrammer)world.getTileEntity(x, y, z));
            case GUI_ID_DRONE:
                return new GuiDrone(new ContainerChargingStationItemInventory(player.inventory, (TileEntityChargingStation)world.getTileEntity(x, y, z)), (TileEntityChargingStation)world.getTileEntity(x, y, z));
            case GUI_ID_PRESSURE_MODULE:
                return new GuiPressureModule(player, x, y, z);
            case GUI_ID_AIR_GRATE_MODULE:
View Full Code Here

TOP

Related Classes of pneumaticCraft.client.gui.GuiProgrammer

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.