soiz1's picture
Upload folder using huggingface_hub
d46f4a3 verified
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);
}
}