Config Registration
After you've created your config you'll need to register it to the mod so we can parse and have it show up in Mod Menu or Neo(Forge) config screen. To register you need to first create a Configurator with your mods id, this configurator is global for your mod and should be reused if you make multiple configs.
After you've created your Configurator you can call register on it with either the class or a ResourcefulConfig object (this is done if you are making the entire config structure by hand).
Additionally there are methods with an extra parameter at the end that is a consumer with a ConfigPatchEvent, this event allows you to register patches/fixes for previous versions this allows you to data fix/update your configs to the latest. You can either call register(version, JsonObject -> JsonObject) or move(version, from, to).
Last updated