10 lines
128 B
C#
10 lines
128 B
C#
|
namespace ImGuiNET
|
||
|
{
|
||
|
[System.Flags]
|
||
|
public enum ImGuiTableRowFlags
|
||
|
{
|
||
|
None = 0,
|
||
|
Headers = 1,
|
||
|
}
|
||
|
}
|