blob: b12aec40b27cd59175bcc6f0a867617c7d3a27c7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include "cru/platform/native/cursor.hpp"
#include "cru/platform/native/ui_application.hpp"
namespace cru::platform::native {
std::shared_ptr<Cursor> GetSystemCursor(SystemCursor type) {
return UiApplication::GetInstance()->GetCursorManager()->GetSystemCursor(
type);
}
} // namespace cru::platform::native
|