| 35 | class KeyboardState { |
| 36 | public: |
| 37 | enum class ModifierKey { Control, Alt, Shift }; |
| 38 | enum class Key { Left, Right, Up, Down, Plus, Minus }; |
| 39 | |
| 40 | static bool is_modifier_key_pressed(ModifierKey key); |
nothing calls this directly
no outgoing calls
no test coverage detected