mirror of
https://github.com/maxartz15/MoonWorksDearImGuiScaffold.git
synced 2024-11-10 02:02:54 +01:00
16 lines
335 B
C#
16 lines
335 B
C#
|
namespace ImGuiNET
|
||
|
{
|
||
|
[System.Flags]
|
||
|
public enum ImGuiBackendFlags
|
||
|
{
|
||
|
None = 0,
|
||
|
HasGamepad = 1,
|
||
|
HasMouseCursors = 2,
|
||
|
HasSetMousePos = 4,
|
||
|
RendererHasVtxOffset = 8,
|
||
|
PlatformHasViewports = 1024,
|
||
|
HasMouseHoveredViewport = 2048,
|
||
|
RendererHasViewports = 4096,
|
||
|
}
|
||
|
}
|