mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 10:17:22 +01:00
24 lines
424 B
C#
24 lines
424 B
C#
namespace Dalamud.Bindings.ImAnim;
|
|
|
|
public enum ImAnimAnchorSpace
|
|
{
|
|
/// <summary>
|
|
/// ImGui::GetContentRegionAvail()
|
|
/// </summary>
|
|
WindowContent,
|
|
|
|
/// <summary>
|
|
/// ImGui::GetWindowSize()
|
|
/// </summary>
|
|
Window,
|
|
|
|
/// <summary>
|
|
/// ImGui::GetWindowViewport()->Size
|
|
/// </summary>
|
|
Viewport,
|
|
|
|
/// <summary>
|
|
/// ImGui::GetItemRectSize()
|
|
/// </summary>
|
|
LastItem,
|
|
}
|