Revert CorePlugin commits

This commit is contained in:
Soreepeong 2024-02-26 01:23:01 +09:00
parent 3a6aa13c3b
commit 06bbc558a8
2 changed files with 3 additions and 78 deletions

View file

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