package mightypork.gamecore.core; import mightypork.utils.annotations.Stub; import mightypork.utils.eventbus.clients.BusNode; /** * App plugin. Plugins are an easy way to extend app functionality.
* Typically, a plugin waits for trigger event(s) and performs some action upon * receiving them. * * @author Ondřej Hruška (MightyPork) */ public class AppPlugin extends BusNode { protected App app; void bind(App app) { this.app = app; } /** * Initialize the plugin for the given App.
* The plugin is already attached to the event bus. */ @Stub public void initialize() { } }