Package logisticspipes.proxy.interfaces

Examples of logisticspipes.proxy.interfaces.INEIProxy


          @Override public ItemStack insertItems(ItemStack stack) {return stack;}
        };
      }
    }, ICrateStorageProxy.class));
   
    SimpleServiceLocator.setNEIProxy(getWrappedProxy("NotEnoughItems", INEIProxy.class, NEIProxy.class, new INEIProxy() {
      @Override public List<String> getInfoForPosition(World world, EntityPlayer player, MovingObjectPosition objectMouseOver) {return new ArrayList<String>(0);}
      @Override public ItemStack getItemForPosition(World world, EntityPlayer player, MovingObjectPosition objectMouseOver) {return null;}
    }));
   
    SimpleServiceLocator.setFactorizationProxy(getWrappedProxy("factorization", IFactorizationProxy.class, FactorizationProxy.class, new IFactorizationProxy() {
View Full Code Here

TOP

Related Classes of logisticspipes.proxy.interfaces.INEIProxy

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.