mirror of
https://github.com/PaperMC/Paper.git
synced 2024-10-29 23:09:33 +01:00
84ecdb5439
- ShapedRecipes - ShapelessRecipes - CraftingRecipe - FurnaceRecipes
13 lines
209 B
Java
13 lines
209 B
Java
package net.minecraft.server;
|
|
|
|
public interface CraftingRecipe {
|
|
|
|
boolean a(InventoryCrafting inventorycrafting);
|
|
|
|
ItemStack b(InventoryCrafting inventorycrafting);
|
|
|
|
int a();
|
|
|
|
ItemStack b();
|
|
}
|