-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathServices.cs
28 lines (17 loc) · 999 Bytes
/
Services.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
using Dalamud.IoC;
using Dalamud.Plugin;
using Dalamud.Plugin.Services;
namespace CombatCursorContainment;
internal sealed class Services
{
[PluginService] public static IDalamudPluginInterface PluginInterface { get; private set; } = null!;
[PluginService] public static IClientState ClientState { get; private set; } = null!;
[PluginService] public static ICondition Condition { get; private set; } = null!;
[PluginService] public static IFramework Framework { get; private set; } = null!;
[PluginService] public static IGameConfig GameConfig { get; private set; } = null!;
[PluginService] public static ICommandManager CommandManager { get; private set; } = null!;
[PluginService] public static IChatGui ChatGui { get; private set; } = null!;
[PluginService] public static IDutyState DutyState { get; private set; } = null!;
[PluginService] public static IPluginLog PluginLog { get; private set; } = null!;
public static Configuration Config { get; internal set; } = null!;
}