* Detect if a mouse button has been released once */
| 28 | * Detect if a mouse button has been released once |
| 29 | */ |
| 30 | RLCPP_MAYBEUNUSED RLCPPAPI inline bool IsButtonReleased(int button) { |
| 31 | return ::IsMouseButtonReleased(button); |
| 32 | } |
| 33 | |
| 34 | RLCPP_MAYBEUNUSED RLCPPAPI inline bool IsButtonUp(int button) { |
| 35 | return ::IsMouseButtonUp(button); |
nothing calls this directly
no outgoing calls
no test coverage detected