Examples of FlipPage


Examples of micdoodle8.mods.galacticraft.api.recipe.SchematicEvent.FlipPage

    {
        FMLClientHandler.instance().getClient().currentScreen = null;

        // Used internally inside Galacticraft to flip to the next page. No need
        // to subscribe to this event.
        MinecraftForge.EVENT_BUS.post(new FlipPage(null, currentIndex, 1));
    }
View Full Code Here

Examples of micdoodle8.mods.galacticraft.api.recipe.SchematicEvent.FlipPage

    {
        FMLClientHandler.instance().getClient().currentScreen = null;

        // Used internally inside Galacticraft to flip to the last page. No need
        // to subscribe to this event.
        MinecraftForge.EVENT_BUS.post(new FlipPage(null, currentIndex, -1));
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.