Package buildcraft.core.gui.slots

Examples of buildcraft.core.gui.slots.SlotValidated


  public ContainerIntegrationTable(InventoryPlayer playerInventory, TileIntegrationTable table) {
    super(table.getSizeInventory());
    this.table = table;

    addSlot(new SlotValidated(table, TileIntegrationTable.SLOT_INPUT_A, 17, 28));
    addSlot(new SlotValidated(table, TileIntegrationTable.SLOT_INPUT_B, 53, 28));
    addSlot(new SlotOutput(table, TileIntegrationTable.SLOT_OUTPUT, 143, 44));
    addSlot(new SlotUntouchable(table.getRecipeOutput(), 0, 116, 44));

    for (int i = TileIntegrationTable.SLOT_OUTPUT + 1; i < 12; i++) {
      addSlot(new Slot(table, i, 8 + (i - (TileIntegrationTable.SLOT_OUTPUT + 1)) * 18, 69));
View Full Code Here


    for (int col = 0; col < 9; col++) {
      // Filtered Buffer filter slots
      addSlotToContainer(new SlotPhantomLockable(filters, tile, col, 8 + col * 18, 27));
      // Filtered Buffer inventory slots
      addSlotToContainer(new SlotValidated(tile, col, 8 + col * 18, 61));
    }

    // Player inventory
    for (int l = 0; l < 3; l++) {
      for (int k1 = 0; k1 < 9; k1++) {
View Full Code Here

TOP

Related Classes of buildcraft.core.gui.slots.SlotValidated

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.