mirror of
https://github.com/maxartz15/MoonWorksDearImGuiScaffold.git
synced 2024-11-12 19:05:30 +01:00
17 lines
311 B
C#
17 lines
311 B
C#
namespace ImGuiNET
|
|
{
|
|
[System.Flags]
|
|
public enum ImGuiChildFlags
|
|
{
|
|
None = 0,
|
|
Border = 1,
|
|
AlwaysUseWindowPadding = 2,
|
|
ResizeX = 4,
|
|
ResizeY = 8,
|
|
AutoResizeX = 16,
|
|
AutoResizeY = 32,
|
|
AlwaysAutoResize = 64,
|
|
FrameStyle = 128,
|
|
}
|
|
}
|