cn.nukkit.inventory.recipe.ItemDescriptor Maven / Gradle / Ivy
package cn.nukkit.inventory.recipe;
import cn.nukkit.api.PowerNukkitXOnly;
import cn.nukkit.api.Since;
import cn.nukkit.item.Item;
@PowerNukkitXOnly
@Since("1.19.50-r2")
public interface ItemDescriptor extends Cloneable {
ItemDescriptorType getType();
Item toItem();
ItemDescriptor clone() throws CloneNotSupportedException;
int getCount();
default boolean match(Item item) {
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy