Package logisticspipes.proxy.interfaces

Examples of logisticspipes.proxy.interfaces.IOpenComputersProxy


    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() {
      @Override public void initLogisticsTileGenericPipe(LogisticsTileGenericPipe tile) {}
      @Override public void handleLPWriteToNBT(LogisticsTileGenericPipe tile, NBTTagCompound nbt) {}
      @Override public void handleLPReadFromNBT(LogisticsTileGenericPipe tile, NBTTagCompound nbt) {}
      @Override public void handleLPInvalidate(LogisticsTileGenericPipe tile) {}
      @Override public void handleLPChunkUnload(LogisticsTileGenericPipe tile) {}
View Full Code Here

TOP

Related Classes of logisticspipes.proxy.interfaces.IOpenComputersProxy

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.