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