All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.minestom.server.recipe.Recipe Maven / Gradle / Ivy

There is a newer version: 7320437640
Show newest version
package net.minestom.server.recipe;

import net.minestom.server.entity.Player;
import org.jetbrains.annotations.NotNull;

public abstract class Recipe {
    protected final RecipeType type;
    protected final String id;

    protected Recipe(@NotNull RecipeType type, @NotNull String id) {
        this.type = type;
        this.id = id;
    }

    public abstract boolean shouldShow(@NotNull Player player);

    @NotNull
    public RecipeType type() {
        return type;
    }

    public @NotNull String id() {
        return id;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy