MCPcopy Create free account
hub / github.com/RobLoach/raylib-cpp / IsButtonReleased

Function IsButtonReleased

include/Mouse.hpp:30–32  ·  view source on GitHub ↗

* Detect if a mouse button has been released once */

Source from the content-addressed store, hash-verified

28 * Detect if a mouse button has been released once
29 */
30RLCPP_MAYBEUNUSED RLCPPAPI inline bool IsButtonReleased(int button) {
31 return ::IsMouseButtonReleased(button);
32}
33
34RLCPP_MAYBEUNUSED RLCPPAPI inline bool IsButtonUp(int button) {
35 return ::IsMouseButtonUp(button);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected