aboutsummaryrefslogtreecommitdiff
path: root/src/engine/user/input.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/user/input.hpp')
-rw-r--r--src/engine/user/input.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/engine/user/input.hpp b/src/engine/user/input.hpp
index 29534e8..9f565c1 100644
--- a/src/engine/user/input.hpp
+++ b/src/engine/user/input.hpp
@@ -16,13 +16,13 @@ public:
void listen() noexcept override;
- bool is_key_pressed(Key key) noexcept override;
+ auto is_key_pressed(Key key) noexcept -> bool override;
- Key get_currently_pressed_key() const noexcept override;
+ [[nodiscard]] auto get_currently_pressed_key() const noexcept -> Key override;
void clear_currently_pressed() noexcept override;
private:
- Key _currently_pressed;
+ Key _currently_pressed{};
std::mutex _currently_pressed_mutex;
};