blob: 9c32ccc92d61608cb4a07a1aca955add70edfea4 [file] [log] [blame] [raw]
package li.cil.occ.mods.computercraft;
import li.cil.oc.api.Driver;
import li.cil.occ.mods.IMod;
public final class ModComputerCraft implements IMod {
@Override
public String getModId() {
return "ComputerCraft";
}
@Override
public void initialize() {
try {
final DriverPeripheral16 driver = new DriverPeripheral16();
if (driver.isValid()) {
Driver.add(new ConverterLuaObject16());
Driver.add(driver);
}
} catch (Throwable ignored) {
}
}
}