| 71 | } |
| 72 | |
| 73 | RLCPP_MAYBEUNUSED RLCPPAPI inline void SetOffset(int offsetX = 0, int offsetY = 0) { |
| 74 | ::SetMouseOffset(offsetX, offsetY); |
| 75 | } |
| 76 | |
| 77 | RLCPP_MAYBEUNUSED RLCPPAPI inline void SetOffset(::Vector2 offset) { |
| 78 | ::SetMouseOffset(static_cast<int>(offset.x), static_cast<int>(offset.y)); |
nothing calls this directly
no outgoing calls
no test coverage detected