| 407 | } |
| 408 | |
| 409 | Point getCursorPos() |
| 410 | { |
| 411 | float x = 0, y = 0; |
| 412 | SDL_GetMouseState(&x, &y); |
| 413 | return { static_cast<int32_t>(x), static_cast<int32_t>(y) }; |
| 414 | } |
| 415 | |
| 416 | // 0x00407FEE |
| 417 | void setCursorPosScaled(int32_t scaledX, int32_t scaledY) |
no outgoing calls
no test coverage detected