Basic reformat, hit once, hope never again

This commit is contained in:
thatsIch
2015-04-03 08:54:31 +02:00
parent 4ff1631f89
commit d34c988c88
886 changed files with 31400 additions and 30990 deletions
@@ -18,6 +18,7 @@
package appeng.integration.abstraction;
import java.util.List;
import net.minecraft.item.ItemStack;
@@ -25,25 +26,25 @@ import net.minecraft.tileentity.TileEntity;
import appeng.api.storage.IMEInventory;
public interface ILP
{
List<ItemStack> getCraftedItems(TileEntity te);
List<ItemStack> getCraftedItems( TileEntity te );
List<ItemStack> getProvidedItems(TileEntity te);
List<ItemStack> getProvidedItems( TileEntity te );
boolean isRequestPipe(TileEntity te);
boolean isRequestPipe( TileEntity te );
List<ItemStack> performRequest(TileEntity te, ItemStack wanted);
List<ItemStack> performRequest( TileEntity te, ItemStack wanted );
IMEInventory getInv(TileEntity te);
IMEInventory getInv( TileEntity te );
Object getGetPowerPipe(TileEntity te);
Object getGetPowerPipe( TileEntity te );
boolean isPowerSource(TileEntity tt);
boolean isPowerSource( TileEntity tt );
boolean canUseEnergy(Object pp, int ceil, List<Object> providersToIgnore);
boolean useEnergy(Object pp, int ceil, List<Object> providersToIgnore);
boolean canUseEnergy( Object pp, int ceil, List<Object> providersToIgnore );
boolean useEnergy( Object pp, int ceil, List<Object> providersToIgnore );
}