2015-01-30 20:16:32 +01:00
|
|
|
package ellpeck.someprettyrandomstuff.proxy;
|
2014-12-03 21:55:53 +01:00
|
|
|
|
2015-02-20 22:45:33 +01:00
|
|
|
public interface IProxy{
|
2014-12-03 21:55:53 +01:00
|
|
|
|
|
|
|
public abstract void preInit();
|
|
|
|
|
|
|
|
public abstract void init();
|
|
|
|
|
|
|
|
public abstract void postInit();
|
|
|
|
}
|