| 363 | void AbyssEngine::setCursorImage(const std::string_view cursorName) { _cursorImage = _cursors[cursorName.data()].get(); } |
| 364 | |
| 365 | void AbyssEngine::setCursorLocked(const bool locked) { SDL_SetRelativeMouseMode(locked ? SDL_TRUE : SDL_FALSE); } |
| 366 | |
| 367 | Common::MouseState &AbyssEngine::getMouseState() { return _mouseState; } |
| 368 |
nothing calls this directly
no outgoing calls
no test coverage detected