| 79 | } |
| 80 | |
| 81 | RLCPP_MAYBEUNUSED RLCPPAPI inline void SetScale(float scaleX = 1.0f, float scaleY = 1.0f) { |
| 82 | ::SetMouseScale(scaleX, scaleY); |
| 83 | } |
| 84 | |
| 85 | RLCPP_MAYBEUNUSED RLCPPAPI inline void SetScale(::Vector2 scale) { |
| 86 | ::SetMouseScale(scale.x, scale.y); |
nothing calls this directly
no outgoing calls
no test coverage detected