geforkt von Mirrors/Paper
13 Zeilen
209 B
Java
13 Zeilen
209 B
Java
|
package net.minecraft.server;
|
||
|
|
||
|
public interface CraftingRecipe {
|
||
|
|
||
|
boolean a(InventoryCrafting inventorycrafting);
|
||
|
|
||
|
ItemStack b(InventoryCrafting inventorycrafting);
|
||
|
|
||
|
int a();
|
||
|
|
||
|
ItemStack b();
|
||
|
}
|