File size: 127 Bytes
d46f4a3
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
package net.minecraft.util.parsing.packrat;

public interface Control {
    Control UNBOUND = () -> {
    };

    void cut();
}