![JAR search and dependency download from the Maven repository](/logo.png)
cn.nukkit.inventory.CartographyRecipe Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of powernukkit Show documentation
Show all versions of powernukkit Show documentation
A Minecraft Bedrock Edition server software implementation made in Java from scratch which supports all new features.
package cn.nukkit.inventory;
import cn.nukkit.item.Item;
import java.util.Collection;
public class CartographyRecipe extends ShapelessRecipe {
public CartographyRecipe(Item result, Collection- ingredients) {
super(result, ingredients);
}
public CartographyRecipe(String recipeId, int priority, Item result, Collection
- ingredients) {
super(recipeId, priority, result, ingredients);
}
@Override
public void registerToCraftingManager(CraftingManager manager) {
manager.registerCartographyRecipe(this);
}
@Override
public RecipeType getType() {
return RecipeType.CARTOGRAPHY;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy