/* * Decompiled with CFR 0.152. */ package net.minecraft.commands.execution; import net.minecraft.commands.execution.EntryAction; import net.minecraft.commands.execution.ExecutionContext; import net.minecraft.commands.execution.Frame; public record CommandQueueEntry(Frame frame, EntryAction action) { public void execute(ExecutionContext context) { this.action.execute(context, this.frame); } }