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()
Get's called after Equilinox has initialized it's resources and before the game loop starts (not yet implemented!).
|
abstract void |
preInit()
Get's called after all mods have been loaded by the Equilinox Mod Loader.
|
public abstract void preInit()
public abstract void 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!).