26 lines
598 B
C#
26 lines
598 B
C#
using Dalamud.IoC;
|
|
using Dalamud.Plugin.Services;
|
|
|
|
namespace WorldMapFixer;
|
|
|
|
public class Service
|
|
{
|
|
[PluginService]
|
|
public static IClientState? ClientState { get; private set; }
|
|
|
|
[PluginService]
|
|
public static IFramework? Framework { get; private set; }
|
|
|
|
[PluginService]
|
|
public static IGameGui? GameGui { get; private set; }
|
|
|
|
[PluginService]
|
|
public static ISigScanner? SigScanner { get; private set; }
|
|
|
|
[PluginService]
|
|
public static IAddonLifecycle? AddonLifecycle { get; private set; }
|
|
|
|
[PluginService]
|
|
public static IKeyState? KeyState { get; private set; }
|
|
}
|