mirror of
https://github.com/maxartz15/MoonWorksDearImGuiScaffold.git
synced 2024-11-12 19:05:30 +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,
|
|
}
|
|
}
|