New addon loading / registration system. On the surface, this may not look like a big change. The old way of registering addons still works, but the `ManhuntAddon` annotation has been changed to `MHAddonProvider`. This allows you to use the `otherAddons` field in the annotation to simply register multiple addons from one plugin. You can now also dynamically register addons by capturing the `MHPluginAddonManager` in a static field when `mh_provide(MHPluginAddonManager)` is invoked, by doing this;
Code (Java):
publicstatic MHPluginAddonManager manager
;
publicvoid mh_provide
(MHPluginAddonManager m
){ manager
= m
; }