forked from jzitnik/twodcraft
9 lines
305 B
Java
9 lines
305 B
Java
package cz.jzitnik.game.crafting.recipes;
|
|
|
|
import cz.jzitnik.game.annotations.CraftingRecipeRegistry;
|
|
|
|
@CraftingRecipeRegistry(recipe = { "cobblestone", "cobblestone", "cobblestone", "_", "stick", "_", "_", "stick",
|
|
"_" }, result = "stone_pickaxe", amount = 1)
|
|
public class StonePickaxeRecipe {
|
|
}
|