blob: ada51475b02b5e617b1ad96135c15881ef925372 (
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 CITGlobalProperties {
String ENTRYPOINT = "citresewn:global_property";
void globalProperty(String key, PropertyValue value) throws Exception;
}
|