16 lines
370 B
Java
16 lines
370 B
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*
|
|
* Could not load the following classes:
|
|
* com.mojang.brigadier.exceptions.CommandSyntaxException
|
|
*/
|
|
package net.minecraft.server.commands;
|
|
|
|
import com.mojang.brigadier.exceptions.CommandSyntaxException;
|
|
|
|
@FunctionalInterface
|
|
public interface InCommandFunction<T, R> {
|
|
public R apply(T var1) throws CommandSyntaxException;
|
|
}
|
|
|