| 8233 | } |
| 8234 | |
| 8235 | bool ImGui::IsMouseClicked(ImGuiMouseButton button, bool repeat) |
| 8236 | { |
| 8237 | return IsMouseClicked(button, ImGuiKeyOwner_Any, repeat ? ImGuiInputFlags_Repeat : ImGuiInputFlags_None); |
| 8238 | } |
| 8239 | |
| 8240 | bool ImGui::IsMouseClicked(ImGuiMouseButton button, ImGuiID owner_id, ImGuiInputFlags flags) |
| 8241 | { |
nothing calls this directly
no test coverage detected