/* * Decompiled with CFR 0.152. * * Could not load the following classes: * com.mojang.brigadier.CommandDispatcher * org.jspecify.annotations.Nullable */ package net.minecraft.commands.functions; import com.mojang.brigadier.CommandDispatcher; import java.util.List; import net.minecraft.commands.FunctionInstantiationException; import net.minecraft.commands.execution.UnboundEntryAction; import net.minecraft.commands.functions.CommandFunction; import net.minecraft.commands.functions.InstantiatedFunction; import net.minecraft.nbt.CompoundTag; import net.minecraft.resources.Identifier; import org.jspecify.annotations.Nullable; public record PlainTextFunction(Identifier id, List> entries) implements CommandFunction, InstantiatedFunction { @Override public InstantiatedFunction instantiate(@Nullable CompoundTag arguments, CommandDispatcher dispatcher) throws FunctionInstantiationException { return this; } }