BloodMagic/src/main/java/WayofTime/bloodmagic/api/compress/CompressionHandler.java
Arcaratus b96725fe98 More sigils
Deleted weird file
2015-12-28 19:22:04 -05:00

15 lines
481 B
Java

package WayofTime.bloodmagic.api.compress;
import net.minecraft.item.ItemStack;
import net.minecraft.world.World;
public abstract class CompressionHandler {
/**
* Called to look at the inventory and syphons the required stack. Returns resultant stack if successful, and null if not.
* @param inv The inventory iterated through
* @return The result of the compression
*/
public abstract ItemStack compressInventory(ItemStack[] inv, World world);
}