mirror of
https://github.com/maxartz15/MoonWorksDearImGuiScaffold.git
synced 2024-11-10 02:02:54 +01:00
14 lines
244 B
C#
14 lines
244 B
C#
namespace ImGuiNET
|
|
{
|
|
[System.Flags]
|
|
public enum ImGuiSliderFlags
|
|
{
|
|
None = 0,
|
|
AlwaysClamp = 16,
|
|
Logarithmic = 32,
|
|
NoRoundToFormat = 64,
|
|
NoInput = 128,
|
|
InvalidMask = 1879048207,
|
|
}
|
|
}
|