using System; using System.Diagnostics.CodeAnalysis; using System.Numerics; using Dalamud.Interface.Windowing; using ImGuiNET; namespace Dalamud.CorePlugin { /// /// Class responsible for drawing the plugin installer. /// internal class PluginWindow : Window, IDisposable { [SuppressMessage("CodeQuality", "IDE0052:Remove unread private members", Justification = "This is a placeholder.")] private readonly Dalamud dalamud; /// /// Initializes a new instance of the class. /// /// The Dalamud instance. public PluginWindow(Dalamud dalamud) : base("CorePlugin") { this.dalamud = dalamud; this.IsOpen = true; this.Size = new Vector2(810, 520); this.SizeCondition = ImGuiCond.FirstUseEver; } /// public void Dispose() { } /// public override void OnOpen() { } /// public override void Draw() { } } }