using System; using System.Numerics; using Dalamud.Bindings.ImGui; using Dalamud.Interface.Windowing; namespace Dalamud.CorePlugin { /// /// Class responsible for drawing the main plugin window. /// internal class PluginWindow : Window, IDisposable { /// /// Initializes a new instance of the class. /// public PluginWindow() : base("CorePlugin") { this.IsOpen = true; this.Size = new Vector2(810, 520); this.SizeConditionNew = ImGuiCond.FirstUseEver; } /// public void Dispose() { } /// public override void OnOpen() { } /// public override void Draw() { } } }