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

@ -131,7 +131,7 @@ namespace Dalamud.Interface.Internal
/// <summary>
/// This event gets called by a plugin UiBuilder when read
/// </summary>
public event RawDX11Scene.BuildUIDelegate OnDraw;
public event RawDX11Scene.BuildUIDelegate Draw;
/// <summary>
/// Gets the default ImGui font.
@ -620,7 +620,7 @@ namespace Dalamud.Interface.Internal
this.LastImGuiIoPtr = ImGui.GetIO();
this.lastWantCapture = this.LastImGuiIoPtr.WantCaptureMouse;
this.OnDraw?.Invoke();
this.Draw?.Invoke();
}
}
}