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

10 lines
327 B
Java
Raw Normal View History

2025-07-01 06:20:03 +00:00
package net.minecraft.commands.execution;
@FunctionalInterface
public interface UnboundEntryAction<T> {
void execute(T p_311343_, ExecutionContext<T> p_309614_, Frame p_309740_);
default EntryAction<T> bind(T p_312071_) {
return (p_309583_, p_311194_) -> this.execute(p_312071_, p_309583_, p_311194_);
}
}