Initial commit

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-02-04 22:12:08 -05:00
commit f72031ae60
13 changed files with 1954 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
using Dalamud.Game.ClientState.Objects;
using Dalamud.IoC;
using Dalamud.Plugin;
using Dalamud.Plugin.Services;
namespace ConfigurableCombo;
internal class Service
{
internal static PluginConfiguration Configuration { get; set; } = null!;
internal static PluginAddressResolver Address { get; set; } = null!;
internal static IconReplacer IconReplacer { get; set; } = null!;
[PluginService] internal static IDalamudPluginInterface Interface { get; private set; } = null!;
[PluginService] internal static IClientState ClientState { get; private set; } = null!;
[PluginService] internal static IChatGui ChatGui { get; private set; } = null!;
[PluginService] internal static ICommandManager CommandManager { get; private set; } = null!;
[PluginService] internal static IDataManager DataManager { get; private set; } = null!;
[PluginService] internal static IPluginLog PluginLog { get; private set; } = null!;
[PluginService] internal static ITextureProvider TextureProvider { get; private set; } = null!;
[PluginService] internal static IFramework Framework { get; private set; } = null!;
}