6 lines
166 B
Java
6 lines
166 B
Java
package net.minecraft.commands.execution;
|
|
|
|
@FunctionalInterface
|
|
public interface EntryAction<T> {
|
|
void execute(ExecutionContext<T> executionContext, Frame frame);
|
|
}
|