本文整理汇总了Java中li.cil.oc.api.driver.InventoryProvider类的典型用法代码示例。如果您正苦于以下问题:Java InventoryProvider类的具体用法?Java InventoryProvider怎么用?Java InventoryProvider使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
InventoryProvider类属于li.cil.oc.api.driver包,在下文中一共展示了InventoryProvider类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: add
import li.cil.oc.api.driver.InventoryProvider; //导入依赖的package包/类
/**
* Register a new inventory provider.
* <p/>
* Inventory providers are used for accessing item inventories using
* the inventory controller upgrade, for example.
*
* @param provider the provider to register.
*/
public static void add(final InventoryProvider provider) {
if (API.driver != null)
API.driver.add(provider);
}
示例2: add
import li.cil.oc.api.driver.InventoryProvider; //导入依赖的package包/类
/**
* Register a new inventory provider.
* <p/>
* Inventory providers are used for accessing item inventories using
* the inventory controller upgrade, for example.
*
* @param provider the provider to register.
*/
void add(InventoryProvider provider);