Normalize namespaces

This commit is contained in:
Soreepeong 2024-02-25 23:56:49 +09:00
parent 04c6be5671
commit 7aba15ef5b
21 changed files with 124 additions and 47 deletions

View file

@ -56,15 +56,16 @@ namespace Dalamud.CorePlugin
/// </summary>
/// <param name="pluginInterface">Dalamud plugin interface.</param>
/// <param name="log">Logging service.</param>
public PluginImpl(DalamudPluginInterface pluginInterface, IPluginLog log)
public PluginImpl(DalamudPluginInterface pluginInterface, IPluginLog log, INotificationManager notificationManager)
{
this.NotificationManager = notificationManager;
try
{
// this.InitLoc();
this.Interface = pluginInterface;
this.pluginLog = log;
this.windowSystem.AddWindow(new PluginWindow());
this.windowSystem.AddWindow(new PluginWindow(this));
this.Interface.UiBuilder.Draw += this.OnDraw;
this.Interface.UiBuilder.OpenConfigUi += this.OnOpenConfigUi;
@ -84,6 +85,8 @@ namespace Dalamud.CorePlugin
}
}
public INotificationManager NotificationManager { get; }
/// <summary>
/// Gets the plugin interface.
/// </summary>