@Retention(value=RUNTIME)
@Target(value=METHOD)
public static @interface LoadEarly.Callback
Normally, ConfigChangedEvent.OnConfigChangedEvent is fired after the config is loaded initially, but when loading a config early, Forge's event bus isn't
available yet. Use this callback to process your config immediately after it was loaded.
@LoadEarly.Callback
public static void afterEarlyLoad() {
// ...
}