aboutsummaryrefslogtreecommitdiff
path: root/src/engine/user/input.hpp
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2022-06-02 19:51:54 +0200
committerHampusM <hampus@hampusmat.com>2022-06-13 17:57:00 +0200
commiteecf4b1e666211a13afa56f93477c55e8fd01621 (patch)
tree410510d6e058995174d5a5b0f535fb457a0c3542 /src/engine/user/input.hpp
parent87f55120f96d0f4f80b497dc9006d89df2dda125 (diff)
feat: implement game of lifev0.1.0
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;
};