Paper/src/main/java/net/minecraft/server/CraftingRecipe.java

13 lines
209 B
Java
Raw Normal View History

package net.minecraft.server;
public interface CraftingRecipe {
boolean a(InventoryCrafting inventorycrafting);
ItemStack b(InventoryCrafting inventorycrafting);
int a();
ItemStack b();
}