public abstract class EquilinoxMod
extends java.lang.Object
EquilinoxMod
will automatically be recognized by the Equilinox Mod Loader.ModInfo
annotation is required for the mod to be loaded by the Equilinox Mod Loader. Optionally Dependency
can be used to
declare a dependency on other mods (dependency system not yet implemented!).Constructor and Description |
---|
EquilinoxMod() |
Modifier and Type | Method and Description |
---|---|
Dependency |
getDependency() |
ModInfo |
getModInfo() |
abstract void |
init(Initializer init)
Get's called after Equilinox has started, but before it initialized it's resources and before the game loop starts (not yet implemented!).
|
abstract void |
preInit(PreInitializer pInit)
Get's called when this mod is loaded by Equilinox Mod Loader.
|
public abstract void preInit(PreInitializer pInit)
pInit
- public abstract void init(Initializer init)
init
- public ModInfo getModInfo()
ModInfo
or null
if not present.ModInfo
annotation should be present at all times (see EquilinoxMod
)!public Dependency getDependency()
Dependency
or null
if not present (dependency system not yet implemented!).