| 24 | } |
| 25 | |
| 26 | std::vector<ImGuiKey> KeyBinding::getModifiers() const { |
| 27 | return modifiers; |
| 28 | } |
| 29 | |
| 30 | std::string KeyBinding::to_string() const { |
| 31 | std::string keys = (this->getKey() == ImGuiKey_None) ? "" : ImGui::GetKeyName(this->getKey()); |
no outgoing calls
no test coverage detected