本文整理匯總了Java中cofh.lib.gui.slot.SlotRemoveOnly類的典型用法代碼示例。如果您正苦於以下問題:Java SlotRemoveOnly類的具體用法?Java SlotRemoveOnly怎麽用?Java SlotRemoveOnly使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
SlotRemoveOnly類屬於cofh.lib.gui.slot包,在下文中一共展示了SlotRemoveOnly類的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: ContainerMachineRenamer
import cofh.lib.gui.slot.SlotRemoveOnly; //導入依賴的package包/類
public ContainerMachineRenamer(TileEntityRenamer tileEntity, EntityPlayer player) {
this.tileEntity = tileEntity;
// Custom Storage
addSlotToContainer(new Slot(tileEntity, 0, 44, 44));
addSlotToContainer(new SlotRemoveOnly(tileEntity, 1, 131, 44));
bindPlayerInventory(player.inventory);
}
示例2: ContainerRareMetalExtractor
import cofh.lib.gui.slot.SlotRemoveOnly; //導入依賴的package包/類
public ContainerRareMetalExtractor(TileEntityRareMetalExtractor tileEntity, InventoryPlayer inventory) {
this.tileEntity = tileEntity;
// Input slot
this.addSlotToContainer(new SlotMultipleValid(tileEntity, 0, 49, 33, false)
.addValidator(new ValidatorOreDictionary(new ItemStack(Blocks.sapling)))
.addValidator(new ValidatorOreDictionary(new ItemStack(Blocks.cobblestone))));
// Output slot
this.addSlotToContainer(new SlotRemoveOnly(tileEntity, 1, 109, 33));
// Energy input slot
this.addSlotToContainer(new SlotEnergy(tileEntity, 2, 8, 53));
this.addPlayerInventory(inventory, 8, 84);
}