minecraft-src/net/minecraft/commands/execution/EntryAction.java
2025-07-04 01:41:11 +03:00

6 lines
166 B
Java

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