blob: 1b5c385351e81a118c3666476c74134a0550e2ed [file] [log] [blame] [raw]
package li.cil.oc;
import cpw.mods.fml.common.Mod;
import cpw.mods.fml.common.event.FMLInitializationEvent;
import li.cil.oc.driver.Registry;
import li.cil.oc.driver.appeng.HandlerAppEng;
import li.cil.oc.driver.buildcraft.HandlerBuildCraft;
import li.cil.oc.driver.enderstorage.HandlerEnderStorage;
import li.cil.oc.driver.ic2.HandlerIndustrialCraft2;
import li.cil.oc.driver.redstoneinmotion.HandlerRedstoneInMotion;
import li.cil.oc.driver.thermalexpansion.HandlerThermalExpansion;
import li.cil.oc.driver.vanilla.HandlerVanilla;
@Mod(modid = "OpenComputers|Components", useMetadata = true)
public class OpenComponents {
@Mod.Instance
public static OpenComponents instance;
@Mod.EventHandler
public void init(final FMLInitializationEvent e) {
Registry.add(new HandlerAppEng());
Registry.add(new HandlerBuildCraft());
Registry.add(new HandlerEnderStorage());
Registry.add(new HandlerIndustrialCraft2());
Registry.add(new HandlerRedstoneInMotion());
Registry.add(new HandlerThermalExpansion());
Registry.add(new HandlerVanilla());
}
}