Custom Gui Handlers
ConfigGuiRegistry registry = AutoConfig.getGuiRegistry(CONFIG_NAME);GuiProvider
registry.registerAnnotationProvider(...); // apply based on the presence of an annotation
registry.registerPredicateProvider(...); // apply based on a certain Predicate<Field>
registry.registerTypeProvider(...); // apply to a certain typeGuiTransformer
registry.registerAnnotationTransformer(...); // apply based on the presence of an annotation
registry.registerPredicateTransformer(...); // apply based on a certain Predicate<Field>Last updated