22 lines
317 B
Java
22 lines
317 B
Java
package WayofTime.bloodmagic.proxy;
|
|
|
|
import WayofTime.bloodmagic.util.helper.InventoryRenderHelper;
|
|
|
|
public class CommonProxy {
|
|
|
|
public InventoryRenderHelper getRenderHelper() {
|
|
return null;
|
|
}
|
|
|
|
public void preInit() {
|
|
|
|
}
|
|
|
|
public void init() {
|
|
|
|
}
|
|
|
|
public void postInit() {
|
|
|
|
}
|
|
}
|