| 9693 | } |
| 9694 | |
| 9695 | bool ImGui::IsMouseClicked(ImGuiMouseButton button, bool repeat) |
| 9696 | { |
| 9697 | return IsMouseClicked(button, repeat ? ImGuiInputFlags_Repeat : ImGuiInputFlags_None, ImGuiKeyOwner_Any); |
| 9698 | } |
| 9699 | |
| 9700 | bool ImGui::IsMouseClicked(ImGuiMouseButton button, ImGuiInputFlags flags, ImGuiID owner_id) |
| 9701 | { |
nothing calls this directly
no test coverage detected