* Detect if a key is NOT being pressed */
| 41 | * Detect if a key is NOT being pressed |
| 42 | */ |
| 43 | RLCPP_MAYBEUNUSED RLCPPAPI inline bool IsKeyUp(int key) { |
| 44 | return ::IsKeyUp(key); |
| 45 | } |
| 46 | |
| 47 | /** |
| 48 | * Get key pressed (keycode), call it multiple times for keys queued, returns 0 when the queue is empty |
nothing calls this directly
no outgoing calls
no test coverage detected