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 Type
    Method
    Description
    default void
    Called client-side after registry objects are created, in the mod creation thread.
    default void
    Called on both client and server after any registry objects are created, in the mod creation thread.
     
    default void
    Called on both client and server after any registry objects are created, on a scheduled tick (so in the main execution thread).
    default void
    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

      default ThirdPartyManager.ModType modType()