mirror of
https://github.com/maxartz15/MoonWorksDearImGuiScaffold.git
synced 2024-11-13 03:15:29 +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,
|
|
}
|
|
}
|