From 1972939ebde39a3e90a50b021b2322d028f344de Mon Sep 17 00:00:00 2001 From: HampusM Date: Sun, 20 Mar 2022 20:37:43 +0100 Subject: refactor: move updating status from the move cursor command --- src/engine/user/cursor.hpp | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'src/engine/user/cursor.hpp') diff --git a/src/engine/user/cursor.hpp b/src/engine/user/cursor.hpp index 713ee31..3ba8a40 100644 --- a/src/engine/user/cursor.hpp +++ b/src/engine/user/cursor.hpp @@ -37,7 +37,7 @@ public: void move(const Vector2 &direction, const uint32_t &amount) noexcept override; - void move_to(const Vector2 &position) noexcept override; + void move_to(const Vector2 &position, bool silent) noexcept override; [[nodiscard]] Vector2 where() const noexcept override; @@ -47,6 +47,13 @@ public: static void show() noexcept; + void subscribe(const Event &event, const Subscriber &subscriber) noexcept override; + + void notify_subscribers(const Event &event, + const Context &context) const noexcept override; + private: Vector2 _position; + + std::unordered_map> _subscribers; }; -- cgit v1.2.3-18-g5258