fix: remove shitty feature interface stuff, do it in UiBuilder

This commit is contained in:
goat 2020-03-18 12:40:56 +09:00
parent 9acc51ca96
commit 6c7592ec17
5 changed files with 7 additions and 57 deletions

View file

@ -58,6 +58,11 @@ namespace Dalamud.Interface
public TextureWrap LoadImage(byte[] imageData) =>
this.interfaceManager.LoadImage(imageData);
/// <summary>
/// Event that is fired when the plugin should open its configuration interface.
/// </summary>
public EventHandler OnOpenConfigUi;
private void OnDraw() {
ImGui.PushID(this.namespaceName);
OnBuildUi?.Invoke();