mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-20 23:54:19 +01:00
feat: add default for flags
This commit is contained in:
parent
52150ec677
commit
63a289f769
1 changed files with 1 additions and 1 deletions
|
|
@ -20,7 +20,7 @@ namespace Dalamud.Interface.Windowing
|
||||||
/// </param>
|
/// </param>
|
||||||
/// <param name="flags">The <see cref="ImGuiWindowFlags"/> of this window.</param>
|
/// <param name="flags">The <see cref="ImGuiWindowFlags"/> of this window.</param>
|
||||||
/// <param name="forceMainWindow">Whether or not this window should be limited to the main game window.</param>
|
/// <param name="forceMainWindow">Whether or not this window should be limited to the main game window.</param>
|
||||||
protected Window(string name, ImGuiWindowFlags flags, bool forceMainWindow = false)
|
protected Window(string name, ImGuiWindowFlags flags = ImGuiWindowFlags.None, bool forceMainWindow = false)
|
||||||
{
|
{
|
||||||
this.WindowName = name;
|
this.WindowName = name;
|
||||||
this.Flags = flags;
|
this.Flags = flags;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue