Package pneumaticCraft.client.gui

Examples of pneumaticCraft.client.gui.GuiCreativeCompressor


        if(player.isSneaking()) return false;
        else {
            if(world.isRemote) {
                TileEntity te = world.getTileEntity(x, y, z);
                if(te instanceof TileEntityCreativeCompressor) {
                    FMLCommonHandler.instance().showGuiScreen(new GuiCreativeCompressor((TileEntityCreativeCompressor)te));
                }
            }
            return true;
        }
    }
View Full Code Here

TOP

Related Classes of pneumaticCraft.client.gui.GuiCreativeCompressor

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.