aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/cursor.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/interfaces/cursor.hpp')
-rw-r--r--src/interfaces/cursor.hpp10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/interfaces/cursor.hpp b/src/interfaces/cursor.hpp
index adab524..77c5096 100644
--- a/src/interfaces/cursor.hpp
+++ b/src/interfaces/cursor.hpp
@@ -2,16 +2,22 @@
#include "engine/data/vector2.hpp"
+#include <memory>
+
class ICursorController
{
public:
+ virtual ~ICursorController() noexcept = default;
+
virtual void move(const Vector2 &direction, const uint32_t &amount) noexcept = 0;
virtual void move_to(const Vector2 &position) noexcept = 0;
[[nodiscard]] virtual Vector2 where() const noexcept = 0;
- static void hide();
+ virtual void ensure_position() noexcept = 0;
+
+ static void hide() noexcept;
- static void show();
+ static void show() noexcept;
};