ActuallyAdditions/src/main/java/ellpeck/someprettytechystuff/proxy/ServerProxy.java

17 lines
197 B
Java
Raw Normal View History

2015-01-05 22:14:01 +01:00
package ellpeck.someprettytechystuff.proxy;
public class ServerProxy implements IProxy{
public void preInit() {
}
public void init() {
}
public void postInit() {
}
}