mirror of
https://github.com/maxartz15/MoonWorksDearImGuiScaffold.git
synced 2024-11-10 02:02:54 +01:00
11 lines
148 B
C#
11 lines
148 B
C#
|
namespace ImGuiNET
|
||
|
{
|
||
|
public enum ImGuiMouseSource
|
||
|
{
|
||
|
Mouse = 0,
|
||
|
TouchScreen = 1,
|
||
|
Pen = 2,
|
||
|
COUNT = 3,
|
||
|
}
|
||
|
}
|