7 lines
217 B
Java
7 lines
217 B
Java
package net.minecraft.commands.execution;
|
|
|
|
public record CommandQueueEntry<T>(Frame frame, EntryAction<T> action) {
|
|
public void execute(ExecutionContext<T> context) {
|
|
this.action.execute(context, this.frame);
|
|
}
|
|
}
|