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;
|
|
|
|
|
|
|
|
|
|
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!;
|
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!;
|
|
|
|
|
}
|
|
|
|
|
}
|