mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-28 11:29:18 +01:00
StyleCop: everything else
This commit is contained in:
parent
f64c9b8321
commit
595fd3f1e4
134 changed files with 16346 additions and 6202 deletions
|
|
@ -1,5 +1,6 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Numerics;
|
||||
|
||||
using ImGuiNET;
|
||||
|
||||
namespace Dalamud.Interface
|
||||
|
|
@ -50,8 +51,7 @@ namespace Dalamud.Interface
|
|||
/// <param name="position">The position of the next window.</param>
|
||||
/// <param name="condition">When to set the position.</param>
|
||||
/// <param name="pivot">The pivot to set the position around.</param>
|
||||
public static void SetNextWindowPosRelativeMainViewport(
|
||||
Vector2 position, ImGuiCond condition = ImGuiCond.None, Vector2 pivot = default)
|
||||
public static void SetNextWindowPosRelativeMainViewport(Vector2 position, ImGuiCond condition = ImGuiCond.None, Vector2 pivot = default)
|
||||
=> ImGui.SetNextWindowPos(position + MainViewport.Pos, condition, pivot);
|
||||
|
||||
/// <summary>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue