Package logisticspipes.proxy.interfaces

Examples of logisticspipes.proxy.interfaces.IIronChestProxy


      @Override public boolean isHyperCube(TileEntity tile) {return false;}
      @Override public List<TileEntity> getConnectedHyperCubes(TileEntity tile) {return new ArrayList<TileEntity>(0);}
      @Override public boolean isEnderIO() {return false;}
    }));

    SimpleServiceLocator.setIronChestProxy(getWrappedProxy("IronChest", IIronChestProxy.class, IronChestProxy.class, new IIronChestProxy() {
      @Override public boolean isIronChest(TileEntity tile) {return false;}
      @Override public @SideOnly(Side.CLIENT) boolean isChestGui(GuiScreen gui) {return false;}
    }));
   
    SimpleServiceLocator.setEnderStorageProxy(getWrappedProxy("EnderStorage", IEnderStorageProxy.class, EnderStorageProxy.class, new IEnderStorageProxy() {
View Full Code Here

TOP

Related Classes of logisticspipes.proxy.interfaces.IIronChestProxy

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.