Mekanism-tilera-Edition/common/cofh/api/core/IInitializer.java

18 lines
286 B
Java
Raw Normal View History

package cofh.api.core;
/**
* Interface which can be put on just about anything to allow for iteration during initialization.
*
* @author King Lemming
*
*/
public interface IInitializer {
public boolean preInit();
public boolean initialize();
public boolean postInit();
}