package net.minecraft.commands.execution; public record CommandQueueEntry(Frame frame, EntryAction action) { public void execute(ExecutionContext context) { this.action.execute(context, this.frame); } }