minecraft-src/net/minecraft/server/commands/InCommandFunction.java
2025-07-04 03:45:38 +03:00

8 lines
220 B
Java

package net.minecraft.server.commands;
import com.mojang.brigadier.exceptions.CommandSyntaxException;
@FunctionalInterface
public interface InCommandFunction<T, R> {
R apply(T object) throws CommandSyntaxException;
}