mirror of
https://github.com/maxartz15/MoonWorksDearImGuiScaffold.git
synced 2024-11-10 02:02:54 +01:00
12 lines
166 B
C#
12 lines
166 B
C#
|
namespace ImGuiNET
|
||
|
{
|
||
|
public enum ImGuiCond
|
||
|
{
|
||
|
None = 0,
|
||
|
Always = 1,
|
||
|
Once = 2,
|
||
|
FirstUseEver = 4,
|
||
|
Appearing = 8,
|
||
|
}
|
||
|
}
|