Interface Addon
public interface Addon
Represents an addon entry point for StriderLoader.
Addons must implement this interface to receive the load event.
-
Method Summary
Modifier and TypeMethodDescriptionvoidonInitialize(IStriderLoader loader) Called when the addon is loaded by the loader.voidonReady(IStriderLoader loader) Called when the game has reached the phase where its registries are fully initialized, operational, and ready to be modified.
-
Method Details
-
onInitialize
Called when the addon is loaded by the loader.- Parameters:
loader- TheIStriderLoaderinstance.
-
onReady
Called when the game has reached the phase where its registries are fully initialized, operational, and ready to be modified.- Parameters:
loader- TheIStriderLoaderinstance.
-