| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- using Dalamud.Game;
- using Dalamud.IoC;
- using Dalamud.Plugin;
- using Dalamud.Plugin.Services;
- namespace HuntBuddy;
- public class Service {
- [PluginService]
- public static IDalamudPluginInterface PluginInterface {
- get;
- set;
- } = null!;
- [PluginService]
- public static ICommandManager Commands {
- get;
- set;
- } = null!;
- [PluginService]
- public static IChatGui Chat {
- get;
- set;
- } = null!;
- [PluginService]
- public static IDataManager DataManager {
- get;
- set;
- } = null!;
- [PluginService]
- public static ISigScanner SigScanner {
- get;
- set;
- } = null!;
- [PluginService]
- public static IGameGui GameGui {
- get;
- set;
- } = null!;
- [PluginService]
- public static IClientState ClientState {
- get;
- set;
- } = null!;
- [PluginService]
- public static IFramework Framework {
- get;
- set;
- } = null!;
- [PluginService]
- public static IPluginLog PluginLog {
- get;
- set;
- } = null!;
- [PluginService]
- public static ITextureProvider TextureProvider {
- get;
- set;
- } = null!;
- }
|