Examples of IThermalExpansionProxy


Examples of logisticspipes.proxy.interfaces.IThermalExpansionProxy

      @Override @SideOnly(Side.CLIENT) public void renderAspectsDown(ItemStack item, int x, int y, GuiScreen gui) {}
      @Override @SideOnly(Side.CLIENT) public void renderAspectsInGrid(List<String> eTags, int x, int y, int legnth, int width, GuiScreen gui) {}
      @Override public void addCraftingRecipes(ICraftingParts parts) {}
    }));
   
    SimpleServiceLocator.setThermalExpansionProxy(getWrappedProxy("ThermalExpansion", IThermalExpansionProxy.class, ThermalExpansionProxy.class, new IThermalExpansionProxy() {
      @Override public boolean isTesseract(TileEntity tile) {return false;}
      @Override public boolean isTE() {return false;}
      @Override public List<TileEntity> getConnectedTesseracts(TileEntity tile) {return new ArrayList<TileEntity>(0);}
      @Override public boolean isEnergyHandler(TileEntity tile) {return false;}
      @Override public int getMaxEnergyStored(TileEntity tile, ForgeDirection opposite) {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.