mirror of
https://github.com/maxartz15/MoonWorksDearImGuiScaffold.git
synced 2024-11-10 02:02:54 +01:00
12 lines
191 B
C#
12 lines
191 B
C#
namespace ImGuiNET
|
|
{
|
|
[System.Flags]
|
|
public enum ImFontAtlasFlags
|
|
{
|
|
None = 0,
|
|
NoPowerOfTwoHeight = 1,
|
|
NoMouseCursors = 2,
|
|
NoBakedLines = 4,
|
|
}
|
|
}
|