blob: 2d9a5909c36cff1c027059782c4dac829299491a [file] [log] [blame] [raw]
package com.legacy.aether.compatibility.client;
import cpw.mods.fml.common.Loader;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
@SideOnly(Side.CLIENT)
public class AetherClientCompatibility
{
public static void initialization()
{
if (Loader.isModLoaded("battlegear2"))
{
mods.battlegear2.api.core.BattlegearUtils.RENDER_BUS.register(new BattlegearClientEventHandler());
}
}
}