Package pneumaticCraft.client.gui

Examples of pneumaticCraft.client.gui.GuiGPSTool


     */
    @Override
    public ItemStack onItemRightClick(ItemStack stack, World world, EntityPlayer player){
        if(world.isRemote) {
            if(getGPSLocation(stack) != null) {
                FMLCommonHandler.instance().showGuiScreen(new GuiGPSTool(getGPSLocation(stack)));
            } else {
                player.addChatComponentMessage(new ChatComponentTranslation(EnumChatFormatting.GREEN + "[GPS Tool] First you'll have to select a coordinate before you can alter it."));
            }
        }
        return stack;
View Full Code Here

TOP

Related Classes of pneumaticCraft.client.gui.GuiGPSTool

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.