blob: 8e43d04c6a608f8b2980a5ee26361c570345ccf9 [file] [log] [blame] [raw]
package li.cil.occ.mods.buildcraft;
import li.cil.oc.api.Driver;
import li.cil.occ.mods.IMod;
public final class ModBuildCraft implements IMod {
@Override
public String getModId() {
return "BuildCraft|Core";
}
@Override
public void initialize() {
Driver.add(new DriverPipe());
Driver.add(new DriverPipeTE());
Driver.add(new DriverPowerReceptor());
Driver.add(new DriverMachine());
}
}