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/server | |
parent | 09e94aa087485ccf5b4318c4a619db4f6b067cc5 (diff) |
Add Input::get_current_cursor_shape
[Clean up] Removed unused/unnecessary methods.
Diffstat (limited to 'platform/server')
-rw-r--r-- | platform/server/os_server.cpp | 6 | ||||
-rw-r--r-- | platform/server/os_server.h | 3 |
2 files changed, 0 insertions, 9 deletions
diff --git a/platform/server/os_server.cpp b/platform/server/os_server.cpp index e643d3e8bb..53f2a65c8e 100644 --- a/platform/server/os_server.cpp +++ b/platform/server/os_server.cpp @@ -198,12 +198,6 @@ String OS_Server::get_name() { void OS_Server::move_window_to_foreground() { } -void OS_Server::set_cursor_shape(CursorShape p_shape) { -} - -void OS_Server::set_custom_mouse_cursor(const RES &p_cursor, CursorShape p_shape, const Vector2 &p_hotspot) { -} - OS::PowerState OS_Server::get_power_state() { return power_manager->get_power_state(); } diff --git a/platform/server/os_server.h b/platform/server/os_server.h index eebe8ae777..7441064790 100644 --- a/platform/server/os_server.h +++ b/platform/server/os_server.h @@ -95,9 +95,6 @@ protected: public: virtual String get_name(); - virtual void set_cursor_shape(CursorShape p_shape); - virtual void set_custom_mouse_cursor(const RES &p_cursor, CursorShape p_shape, const Vector2 &p_hotspot); - virtual void set_mouse_show(bool p_show); virtual void set_mouse_grab(bool p_grab); virtual bool is_mouse_grab_enabled() const; |