File size: 232 Bytes
d46f4a3
 
 
 
 
 
 
1
2
3
4
5
6
7
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);
    }
}