///////////////////////////////////////////////////////
| 603 | |
| 604 | //////////////////////////////////////////////////////////// |
| 605 | bool KeyboardImpl::isKeyPressed(Keyboard::Key key) |
| 606 | { |
| 607 | const KeyCode keycode = keyToKeyCode(key); |
| 608 | return isKeyPressedImpl(keycode); |
| 609 | } |
| 610 | |
| 611 | |
| 612 | //////////////////////////////////////////////////////////// |
nothing calls this directly
no test coverage detected