Package net.minecraft.src.buildcraft.additionalpipes.gui

Examples of net.minecraft.src.buildcraft.additionalpipes.gui.GuiHandler


    public static MinecraftServer mcs = ModLoader.getMinecraftServerInstance();
    public static List<Integer> pipeIds = new LinkedList<Integer>();

    public mod_AdditionalPipes() {

        MinecraftForge.setGuiHandler(this, new GuiHandler());
        MinecraftForge.registerChunkLoadHandler(new ChunkLoadingHandler());
        MinecraftForge.registerConnectionHandler(new NetworkHandler());
    }
View Full Code Here


        ModLoader.setInGUIHook(this, true, true);
        ModLoader.registerKey(this, laserKeyBinding, false);
        ModLoader.addLocalization("laserKeyBinding", "Turn on/off chunk loader boundries");

        MinecraftForge.setGuiHandler(this, new GuiHandler());
        MinecraftForge.registerChunkLoadHandler(new ChunkLoadingHandler());
        MinecraftForge.registerConnectionHandler(new NetworkHandler());

    }
View Full Code Here

TOP

Related Classes of net.minecraft.src.buildcraft.additionalpipes.gui.GuiHandler

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.