Mekanism-tilera-Edition/common/cofh/api/core/IInitializer.java
2013-11-14 21:58:32 -05:00

17 lines
286 B
Java

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();
}