mirror of
https://github.com/maxartz15/MoonWorksDearImGuiScaffold.git
synced 2024-11-12 19:05:30 +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,
|
|
}
|
|
}
|