blob: 44af8076401c00ce9ce3da8575b908d60d047f8d [file] [log] [blame] [raw]
package li.cil.oc.api;
import li.cil.oc.server.computer.Drivers;
public final class OpenComputersAPI {
public static void addDriver(IBlockDriver driver) {
// TODO Use reflection to allow distributing the API.
Drivers.add(driver);
}
public static void addDriver(IItemDriver driver) {
// TODO Use reflection to allow distributing the API.
Drivers.add(driver);
}
}