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

21 lines
322 B
Java
Raw Normal View History

2015-01-05 22:14:01 +01:00
package ellpeck.someprettytechystuff.proxy;
import ellpeck.someprettytechystuff.blocks.renderer.RenderRegistry;
@SuppressWarnings("unused")
public class ClientProxy implements IProxy{
public void preInit(){
}
public void init(){
RenderRegistry.init();
}
public void postInit(){
2014-12-18 19:24:06 +01:00
}
}