2015-11-02 12:39:44 -08:00
|
|
|
package WayofTime.bloodmagic.proxy;
|
2015-10-29 20:22:14 -07:00
|
|
|
|
2016-01-03 15:39:59 -05:00
|
|
|
import net.minecraftforge.common.MinecraftForge;
|
|
|
|
import net.minecraftforge.fml.common.FMLCommonHandler;
|
|
|
|
import WayofTime.bloodmagic.util.handler.EventHandler;
|
2015-12-28 13:43:26 -08:00
|
|
|
import WayofTime.bloodmagic.util.helper.InventoryRenderHelper;
|
|
|
|
|
2015-12-30 15:34:40 -05:00
|
|
|
public class CommonProxy
|
|
|
|
{
|
|
|
|
public InventoryRenderHelper getRenderHelper()
|
|
|
|
{
|
2015-12-28 13:43:26 -08:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2015-12-30 15:34:40 -05:00
|
|
|
public void preInit()
|
|
|
|
{
|
2016-01-03 15:39:59 -05:00
|
|
|
Object obj = new EventHandler();
|
|
|
|
MinecraftForge.EVENT_BUS.register(obj);
|
|
|
|
FMLCommonHandler.instance().bus().register(obj);
|
2015-10-29 20:22:14 -07:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-12-30 15:34:40 -05:00
|
|
|
public void init()
|
|
|
|
{
|
2015-10-29 20:22:14 -07:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-12-30 15:34:40 -05:00
|
|
|
public void postInit()
|
|
|
|
{
|
2015-10-29 20:22:14 -07:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|