refactor: Draw, OpenConfigUi now Action

This commit is contained in:
goat 2021-08-24 16:45:14 +02:00
parent 8256e5431a
commit 23a6001541
No known key found for this signature in database
GPG key ID: F18F057873895461

View file

@ -44,12 +44,12 @@ namespace Dalamud.Interface
/// The delegate that gets called when Dalamud is ready to draw your windows or overlays. /// The delegate that gets called when Dalamud is ready to draw your windows or overlays.
/// When it is called, you can use static ImGui calls. /// When it is called, you can use static ImGui calls.
/// </summary> /// </summary>
public event RawDX11Scene.BuildUIDelegate Draw; public event Action Draw;
/// <summary> /// <summary>
/// Event that is fired when the plugin should open its configuration interface. /// Event that is fired when the plugin should open its configuration interface.
/// </summary> /// </summary>
public event EventHandler OpenConfigUi; public event Action OpenConfigUi;
/// <summary> /// <summary>
/// Gets or sets an action that is called any time ImGui fonts need to be rebuilt.<br/> /// Gets or sets an action that is called any time ImGui fonts need to be rebuilt.<br/>