blob: 0730d5beeeb4c0f4473237d01b34c9ca91a1d19b [file] [log] [blame] [raw]
package net.glowstone.inventory.crafting;
import org.bukkit.inventory.ItemStack;
public class ItemMatcher {
/**
* Get the result for a given crafting matrix.
*
* @param matrix a square matrix of items
* @return Result of recipe
*/
public ItemStack getResult(ItemStack[] matrix) {
return null; // Don't match by default
}
}