Code/net/minecraft/commands/execution/CommandQueueEntry.java

7 lines
232 B
Java
Raw Normal View History

2025-07-01 06:20:03 +00:00
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);
}
}