diff options
author | Guilherme Felipe <guilhermefelipecgs@gmail.com> | 2019-04-15 12:30:20 -0300 |
---|---|---|
committer | Guilherme Felipe <guilhermefelipecgs@gmail.com> | 2019-04-15 15:22:09 -0300 |
commit | 1bae73d7d060eeb9531fc5ba46de5d31dc7073c7 (patch) | |
tree | a9e7ee957123548847b528e748bf054ddc08ad13 /platform/uwp/os_uwp.cpp | |
parent | 09e94aa087485ccf5b4318c4a619db4f6b067cc5 (diff) | |
download | redot-engine-1bae73d7d060eeb9531fc5ba46de5d31dc7073c7.tar.gz |
Add Input::get_current_cursor_shape
[Clean up] Removed unused/unnecessary methods.
Diffstat (limited to 'platform/uwp/os_uwp.cpp')
-rw-r--r-- | platform/uwp/os_uwp.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/platform/uwp/os_uwp.cpp b/platform/uwp/os_uwp.cpp index bc74da8a1b..82f09032f5 100644 --- a/platform/uwp/os_uwp.cpp +++ b/platform/uwp/os_uwp.cpp @@ -704,6 +704,11 @@ void OS_UWP::set_cursor_shape(CursorShape p_shape) { cursor_shape = p_shape; } +OS::CursorShape OS_UWP::get_cursor_shape() const { + + return cursor_shape; +} + void OS_UWP::set_custom_mouse_cursor(const RES &p_cursor, CursorShape p_shape, const Vector2 &p_hotspot) { // TODO } |