refactor: OnDraw, OnBuildUi -> Draw,

This commit is contained in:
goat 2021-08-11 02:41:51 +02:00
parent 9214e17577
commit 3c65cc95ee
No known key found for this signature in database
GPG key ID: F18F057873895461
4 changed files with 11 additions and 11 deletions

View file

@ -35,7 +35,7 @@ namespace Dalamud.CorePlugin
this.windowSystem.AddWindow(new PluginWindow(Dalamud.Instance));
this.Interface.UiBuilder.OnBuildUi += this.OnDraw;
this.Interface.UiBuilder.Draw += this.OnDraw;
this.Interface.UiBuilder.OnOpenConfigUi += this.OnOpenConfigUi;
this.Interface.CommandManager.AddHandler("/di", new(this.OnCommand) { HelpMessage = $"Access the {this.Name} plugin." });
@ -51,7 +51,7 @@ namespace Dalamud.CorePlugin
{
this.Interface.CommandManager.RemoveHandler("/di");
this.Interface.UiBuilder.OnBuildUi -= this.OnDraw;
this.Interface.UiBuilder.Draw -= this.OnDraw;
this.windowSystem.RemoveAllWindows();