mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-05 00:29:08 +01:00
ad1fbe7101
Also diesieben07 made me change stuff.
10 lines
182 B
Java
10 lines
182 B
Java
package ellpeck.someprettyrandomstuff.proxy;
|
|
|
|
public interface IProxy{
|
|
|
|
public abstract void preInit();
|
|
|
|
public abstract void init();
|
|
|
|
public abstract void postInit();
|
|
}
|