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

21 lines
322 B
Java

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(){
}
}