public interface IModule
Modifier and Type | Method and Description |
---|---|
void |
init(cpw.mods.fml.common.event.FMLInitializationEvent event)
Called on the init event
|
java.lang.String[] |
modsCompatible()
Gets the mods required for this module to activate
|
void |
postInit(cpw.mods.fml.common.event.FMLPostInitializationEvent event)
Called on the post-init event
|
void |
preInit(cpw.mods.fml.common.event.FMLPreInitializationEvent event)
Called on the pre-init event
|
void preInit(cpw.mods.fml.common.event.FMLPreInitializationEvent event)
event
- The eventvoid init(cpw.mods.fml.common.event.FMLInitializationEvent event)
event
- The eventvoid postInit(cpw.mods.fml.common.event.FMLPostInitializationEvent event)
event
- The eventjava.lang.String[] modsCompatible()
{"modA", "modB}
will cause the module to activate even if only modA is loaded)