File size: 327 Bytes
d46f4a3
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
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_);
    }
}