Initial commit: MSQ Progress plugin v1.0.0

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-02-21 18:57:38 -05:00
commit 919b72051f
10 changed files with 831 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
using Dalamud.IoC;
using Dalamud.Plugin;
using Dalamud.Plugin.Services;
namespace MSQProgress;
internal class Service
{
[PluginService] internal static IDalamudPluginInterface Interface { get; private set; } = null!;
[PluginService] internal static IClientState ClientState { 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 IUnlockState UnlockState { get; private set; } = null!;
}