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 Type
    Method
    Description
    void
    Called when the addon is loaded by the loader.
    void
    Called when the game has reached the phase where its registries are fully initialized, operational, and ready to be modified.
  • Method Details

    • onInitialize

      void onInitialize(IStriderLoader loader)
      Called when the addon is loaded by the loader.
      Parameters:
      loader - The IStriderLoader instance.
    • onReady

      void onReady(IStriderLoader loader)
      Called when the game has reached the phase where its registries are fully initialized, operational, and ready to be modified.
      Parameters:
      loader - The IStriderLoader instance.