blob: ac8228ae7c2637df6a7cca0796c987897adb58d3 (
plain)
1
2
3
4
5
6
7
8
9
10
|
package shcm.shsupercm.fabric.citresewn.api;
import shcm.shsupercm.fabric.citresewn.pack.format.PropertyValue;
@FunctionalInterface
public interface GlobalPropertiesHandler {
String ENTRYPOINT = "citresewn:global_property";
void globalProperty(String key, PropertyValue value) throws Exception;
}
|