blob: b507e6bc11e3d1f3a146ff6063985d432db0ebd6 [file] [log] [blame] [raw]
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();
}