cn.nukkit.inventory.MixRecipe 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 lombok.ToString;
@ToString
public abstract class MixRecipe implements Recipe {
private final Item input;
private final Item ingredient;
private final Item output;
public MixRecipe(Item input, Item ingredient, Item output) {
this.input = input.clone();
this.ingredient = ingredient.clone();
this.output = output.clone();
}
public Item getIngredient() {
return ingredient.clone();
}
public Item getInput() {
return input.clone();
}
@Override
public Item getResult() {
return output.clone();
}
}