ec98b19ffb
(Items done!)
17 lines
286 B
Java
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();
|
|
|
|
}
|