| 10507 | } |
| 10508 | |
| 10509 | bool ImGui::IsMouseClicked(ImGuiMouseButton button, bool repeat) |
| 10510 | { |
| 10511 | return IsMouseClicked(button, repeat ? ImGuiInputFlags_Repeat : ImGuiInputFlags_None, ImGuiKeyOwner_Any); |
| 10512 | } |
| 10513 | |
| 10514 | bool ImGui::IsMouseClicked(ImGuiMouseButton button, ImGuiInputFlags flags, ImGuiID owner_id) |
| 10515 | { |
nothing calls this directly
no test coverage detected