Package net.storm.api

Class Static

java.lang.Object
net.storm.api.Static

public class Static extends Object
Central service locator providing static access to all Storm API services.

This class serves as the primary entry point for plugin developers to access various game APIs, managers, and utilities. All services are injected via Google Guice dependency injection and exposed as static getters.

Example usage:

 
 IInventory inventory = Static.getInventory();
 IBank bank = Static.getBank();
 IGame game = Static.getGame();
 
 

See Also:
  • Field Details

    • injector

      public static com.google.inject.Injector injector
      The Google Guice injector instance used for dependency injection.
  • Constructor Details

    • Static

      public Static()