2022-10-26 21:38:29 +00:00
|
|
|
|
using Dalamud.Data;
|
|
|
|
|
using Dalamud.Game;
|
2022-10-23 02:38:58 +00:00
|
|
|
|
using Dalamud.Game.ClientState;
|
|
|
|
|
using Dalamud.Game.ClientState.Conditions;
|
|
|
|
|
using Dalamud.Game.ClientState.Objects;
|
2022-10-25 17:28:11 +00:00
|
|
|
|
using Dalamud.Game.Command;
|
2022-10-23 02:38:58 +00:00
|
|
|
|
using Dalamud.Game.Gui;
|
|
|
|
|
using Dalamud.Interface.Windowing;
|
|
|
|
|
using Dalamud.IoC;
|
|
|
|
|
using Dalamud.Plugin;
|
2022-11-24 22:28:31 +00:00
|
|
|
|
using Pal.Client.Net;
|
2022-10-23 02:38:58 +00:00
|
|
|
|
|
|
|
|
|
namespace Pal.Client
|
|
|
|
|
{
|
|
|
|
|
public class Service
|
|
|
|
|
{
|
|
|
|
|
[PluginService] public static DalamudPluginInterface PluginInterface { get; private set; } = null!;
|
2022-10-30 10:02:49 +00:00
|
|
|
|
[PluginService] public static ClientState ClientState { get; set; } = null!;
|
2022-10-23 02:38:58 +00:00
|
|
|
|
[PluginService] public static ChatGui Chat { get; private set; } = null!;
|
|
|
|
|
[PluginService] public static ObjectTable ObjectTable { get; private set; } = null!;
|
|
|
|
|
[PluginService] public static Framework Framework { get; set; } = null!;
|
|
|
|
|
[PluginService] public static Condition Condition { get; set; } = null!;
|
2022-10-25 17:28:11 +00:00
|
|
|
|
[PluginService] public static CommandManager CommandManager { get; set; } = null!;
|
2022-10-26 21:38:29 +00:00
|
|
|
|
[PluginService] public static DataManager DataManager { get; set; } = null!;
|
2023-02-08 15:06:43 +00:00
|
|
|
|
[PluginService] public static GameGui GameGui { get; set; } = null!;
|
2022-10-23 02:38:58 +00:00
|
|
|
|
|
|
|
|
|
public static Plugin Plugin { get; set; } = null!;
|
|
|
|
|
public static WindowSystem WindowSystem { get; set; } = new(typeof(Service).AssemblyQualifiedName);
|
|
|
|
|
internal static RemoteApi RemoteApi { get; set; } = new RemoteApi();
|
|
|
|
|
public static Configuration Configuration { get; set; } = null!;
|
2023-02-05 03:21:24 +00:00
|
|
|
|
internal static Hooks Hooks { get; set; } = null!;
|
2022-10-23 02:38:58 +00:00
|
|
|
|
}
|
|
|
|
|
}
|