| 8283 | } |
| 8284 | |
| 8285 | bool ImGui::IsMouseClicked(ImGuiMouseButton button, bool repeat) |
| 8286 | { |
| 8287 | return IsMouseClicked(button, ImGuiKeyOwner_Any, repeat ? ImGuiInputFlags_Repeat : ImGuiInputFlags_None); |
| 8288 | } |
| 8289 | |
| 8290 | bool ImGui::IsMouseClicked(ImGuiMouseButton button, ImGuiID owner_id, ImGuiInputFlags flags) |
| 8291 | { |
nothing calls this directly
no test coverage detected