using System; using System.Numerics; using Dalamud.Interface.Windowing; using ImGuiNET; namespace Dalamud.CorePlugin { /// /// Class responsible for drawing the plugin installer. /// internal class PluginWindow : Window, IDisposable { private static readonly ModuleLog Log = new("CorePlugin"); private readonly Dalamud dalamud; /// /// Initializes a new instance of the class. /// /// The Dalamud instance. public PluginWindow(Dalamud dalamud) : base("CorePlugin", ImGuiWindowFlags.NoCollapse | ImGuiWindowFlags.NoResize | ImGuiWindowFlags.NoScrollbar) { this.dalamud = dalamud; this.IsOpen = true; this.Size = new Vector2(810, 520); this.SizeCondition = ImGuiCond.Always; } /// public void Dispose() { } /// public override void OnOpen() { } /// public override void Draw() { } } }