Package logisticspipes.proxy.interfaces

Examples of logisticspipes.proxy.interfaces.ICCProxy


      @Override public boolean isEnergySink(TileEntity tile) {return false;}
      @Override public double demandedEnergyUnits(TileEntity tile) {return 0;}
      @Override public double injectEnergyUnits(TileEntity tile, ForgeDirection opposite, double d) {return d;}
    }));
   
    SimpleServiceLocator.setCCProxy(getWrappedProxy("ComputerCraft@1.6", ICCProxy.class, CCProxy.class, new ICCProxy() {
      @Override public boolean isTurtle(TileEntity tile) {return false;}
      @Override public boolean isComputer(TileEntity tile) {return false;}
      @Override public boolean isCC() {return false;}
      @Override public boolean isLuaThread(Thread thread) {return false;}
      @Override public void queueEvent(String event, Object[] arguments, LogisticsTileGenericPipe logisticsTileGenericPipe) {}
View Full Code Here

TOP

Related Classes of logisticspipes.proxy.interfaces.ICCProxy

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.