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

Function SetOffset

include/Mouse.hpp:73–75  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

71}
72
73RLCPP_MAYBEUNUSED RLCPPAPI inline void SetOffset(int offsetX = 0, int offsetY = 0) {
74 ::SetMouseOffset(offsetX, offsetY);
75}
76
77RLCPP_MAYBEUNUSED RLCPPAPI inline void SetOffset(::Vector2 offset) {
78 ::SetMouseOffset(static_cast<int>(offset.x), static_cast<int>(offset.y));

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected