| 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 | |
| } | |
| } |