mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 10:17:22 +01:00
45 lines
1 KiB
C#
45 lines
1 KiB
C#
using System;
|
|
using System.Numerics;
|
|
|
|
using Dalamud.Interface.Windowing;
|
|
using ImGuiNET;
|
|
|
|
namespace Dalamud.CorePlugin
|
|
{
|
|
/// <summary>
|
|
/// Class responsible for drawing the plugin installer.
|
|
/// </summary>
|
|
internal class PluginWindow : Window, IDisposable
|
|
{
|
|
private readonly Dalamud dalamud;
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="PluginWindow"/> class.
|
|
/// </summary>
|
|
/// <param name="dalamud">The Dalamud instance.</param>
|
|
public PluginWindow(Dalamud dalamud)
|
|
: base("CorePlugin")
|
|
{
|
|
this.dalamud = dalamud;
|
|
this.IsOpen = true;
|
|
|
|
this.Size = new Vector2(810, 520);
|
|
this.SizeCondition = ImGuiCond.FirstUseEver;
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
public void Dispose()
|
|
{
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
public override void OnOpen()
|
|
{
|
|
}
|
|
|
|
/// <inheritdoc/>
|
|
public override void Draw()
|
|
{
|
|
}
|
|
}
|
|
}
|