blob: af675b0d24e86cb909c321230768489636ebb9f0 [file] [log] [blame] [raw]
package li.cil.oc.integration.appeng
import li.cil.oc.api.Driver
import li.cil.oc.integration.ModProxy
import li.cil.oc.integration.Mods
object ModAppEng extends ModProxy {
override def getMod = Mods.AppliedEnergistics2
override def initialize() {
Driver.add(DriverController)
Driver.add(DriverExportBus)
Driver.add(DriverImportBus)
Driver.add(DriverPartInterface)
Driver.add(DriverBlockInterface)
Driver.add(new ConverterCellInventory)
}
}