mirror of
https://github.com/maxartz15/MoonWorksDearImGuiScaffold.git
synced 2024-11-10 02:02:54 +01:00
24 lines
444 B
C#
24 lines
444 B
C#
|
namespace ImGuiNET
|
||
|
{
|
||
|
public enum ImGuiNavInput
|
||
|
{
|
||
|
Activate = 0,
|
||
|
Cancel = 1,
|
||
|
Input = 2,
|
||
|
Menu = 3,
|
||
|
DpadLeft = 4,
|
||
|
DpadRight = 5,
|
||
|
DpadUp = 6,
|
||
|
DpadDown = 7,
|
||
|
LStickLeft = 8,
|
||
|
LStickRight = 9,
|
||
|
LStickUp = 10,
|
||
|
LStickDown = 11,
|
||
|
FocusPrev = 12,
|
||
|
FocusNext = 13,
|
||
|
TweakSlow = 14,
|
||
|
TweakFast = 15,
|
||
|
COUNT = 16,
|
||
|
}
|
||
|
}
|