mirror of
https://github.com/maxartz15/MoonWorksDearImGuiScaffold.git
synced 2024-11-14 11:45:34 +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,
|
||
|
}
|
||
|
}
|