forked from Caraxi/SimpleTweaksPlugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Service.cs
34 lines (32 loc) · 1.62 KB
/
Service.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
29
30
31
32
33
34
using System.Diagnostics.CodeAnalysis;
using Dalamud.Data;
using Dalamud.Game;
using Dalamud.Game.ClientState;
using Dalamud.Game.ClientState.Conditions;
using Dalamud.Game.ClientState.Keys;
using Dalamud.Game.ClientState.Objects;
using Dalamud.Game.Command;
using Dalamud.Game.Gui;
using Dalamud.Game.Gui.Toast;
using Dalamud.Game.Libc;
using Dalamud.IoC;
using Dalamud.Plugin;
namespace SimpleTweaksPlugin {
[SuppressMessage("ReSharper", "UnusedAutoPropertyAccessor.Local")]
public class Service {
[PluginService] public static DalamudPluginInterface PluginInterface { get; private set; }
[PluginService] public static ChatGui Chat { get; private set; }
[PluginService] public static ClientState ClientState { get; private set; }
[PluginService] public static CommandManager Commands { get; private set; }
[PluginService] public static Condition Condition { get; private set; }
[PluginService] public static DataManager Data { get; private set; }
[PluginService] public static Framework Framework { get; private set; }
[PluginService] public static GameGui GameGui { get; private set; }
[PluginService] public static KeyState KeyState { get; private set; }
[PluginService] public static LibcFunction LibcFunction { get; private set; }
[PluginService] public static ObjectTable Objects { get; private set; }
[PluginService] public static SigScanner SigScanner { get; private set; }
[PluginService] public static TargetManager Targets { get; private set; }
[PluginService] public static ToastGui Toasts { get; private set; }
}
}