mirror of
https://github.com/maxartz15/MoonWorksDearImGuiScaffold.git
synced 2024-11-14 03:25:38 +01:00
11 lines
144 B
C#
11 lines
144 B
C#
|
namespace ImGuiNET
|
||
|
{
|
||
|
public enum ImGuiMouseButton
|
||
|
{
|
||
|
Left = 0,
|
||
|
Right = 1,
|
||
|
Middle = 2,
|
||
|
COUNT = 5,
|
||
|
}
|
||
|
}
|