Interface IThirdParty
- All Known Implementing Classes:
Botania,BuildCraft,CoFHCore,ComputerCraft,Create,Curios,EnderIO,Forestry,Gamestages,GenericIntegrationHandler,ImmersiveEngineering,Mekanism,Patchouli,Thaumcraft,TheOneProbe,ToughAsNails
public interface IThirdParty
-
Method Summary
Modifier and TypeMethodDescriptiondefault voidCalled client-side after registry objects are created, in the mod creation thread.default voidinit()Called on both client and server after any registry objects are created, in the mod creation thread.default ThirdPartyManager.ModTypemodType()default voidpostInit()Called on both client and server after any registry objects are created, on a scheduled tick (so in the main execution thread).default voidpreInit()Called on both client and server after mods have loaded but before registry events, in the mod creation thread.
-
Method Details
-
preInit
default void preInit()Called on both client and server after mods have loaded but before registry events, in the mod creation thread. -
init
default void init()Called on both client and server after any registry objects are created, in the mod creation thread. -
postInit
default void postInit()Called on both client and server after any registry objects are created, on a scheduled tick (so in the main execution thread). -
clientInit
default void clientInit()Called client-side after registry objects are created, in the mod creation thread. -
modType
-