Code/net/minecraft/server/commands/InCommandFunction.java

8 lines
225 B
Java
Raw Permalink Normal View History

2025-07-01 06:20:03 +00:00
package net.minecraft.server.commands;
import com.mojang.brigadier.exceptions.CommandSyntaxException;
@FunctionalInterface
public interface InCommandFunction<T, R> {
R apply(T p_395002_) throws CommandSyntaxException;
}