Examples of IBetterStorageProxy


Examples of logisticspipes.proxy.interfaces.IBetterStorageProxy

      @Override public boolean canConnectEnergy(TileEntity tile, ForgeDirection opposite) {return false;}
      @Override public int receiveEnergy(TileEntity tile, ForgeDirection opposite, int i, boolean b) {return 0;}
      @Override public void addCraftingRecipes(ICraftingParts parts) {}
    }));
   
    SimpleServiceLocator.setBetterStorageProxy(getWrappedProxy("betterstorage", IBetterStorageProxy.class, BetterStorageProxy.class, new IBetterStorageProxy() {
      @Override public boolean isBetterStorageCrate(TileEntity tile) {return false;}
      @Override public ICrateStorageProxy getCrateStorageProxy(TileEntity tile) {
        return new ICrateStorageProxy() {
          @Override public Iterable<ItemStack> getContents() {return null;}
          @Override public int getUniqueItems() {return 0;}
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.