Examples of IEnderStorageProxy


Examples of logisticspipes.proxy.interfaces.IEnderStorageProxy

    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() {
      @Override public boolean isEnderChestBlock(Block block) {return false;}
      @Override public void openEnderChest(World world, int x, int y, int z, EntityPlayer player) {}
    }));
   
    SimpleServiceLocator.setOpenComputersProxy(getWrappedProxy("OpenComputers@1.3", IOpenComputersProxy.class, OpenComputersProxy.class, new IOpenComputersProxy() {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.