23 lines
621 B
Java
23 lines
621 B
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*
|
|
* Could not load the following classes:
|
|
* org.jspecify.annotations.Nullable
|
|
*/
|
|
package net.minecraft.data.recipes;
|
|
|
|
import net.minecraft.advancements.Advancement;
|
|
import net.minecraft.advancements.AdvancementHolder;
|
|
import net.minecraft.resources.ResourceKey;
|
|
import net.minecraft.world.item.crafting.Recipe;
|
|
import org.jspecify.annotations.Nullable;
|
|
|
|
public interface RecipeOutput {
|
|
public void accept(ResourceKey<Recipe<?>> var1, Recipe<?> var2, @Nullable AdvancementHolder var3);
|
|
|
|
public Advancement.Builder advancement();
|
|
|
|
public void includeRootAdvancement();
|
|
}
|
|
|