Package crazypants.enderio.conduit.gui.item

Examples of crazypants.enderio.conduit.gui.item.InventoryFilterUpgrade


    itemConduit = bundle.getConduit(IItemConduit.class);
    if(itemConduit != null) {

      x = 10;
      y = 47;
      InventoryFilterUpgrade fi = new InventoryFilterUpgrade(itemConduit, dir, false);
      addSlotToContainer(new FilterSlot(fi, 0, x, y, false));
      slotLocations.add(new Point(x, y));

      x = 10;
      y = 47;
      fi = new InventoryFilterUpgrade(itemConduit, dir, true);
      addSlotToContainer(new FilterSlot(fi, 0, x, y, true));
      slotLocations.add(new Point(x, y));

      x = 28;
      y = 47;     
View Full Code Here

TOP

Related Classes of crazypants.enderio.conduit.gui.item.InventoryFilterUpgrade

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.