igIsMouseDown() private method

private igIsMouseDown ( int button ) : bool
button int
return bool
示例#1
0
 public static bool IsMouseDown(int button)
 {
     return(ImGuiNative.igIsMouseDown(button));
 }
示例#2
0
文件: ImGui.cs 项目: se5a/ImGuiCS
 public static bool IsMouseDown(int button)
 => ImGuiNative.igIsMouseDown(button);