mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-14 20:54:16 +01:00
Revert CorePlugin commits
This commit is contained in:
parent
3a6aa13c3b
commit
06bbc558a8
2 changed files with 3 additions and 78 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue