From 6d89d5db5140c04cc94bf4791a32a06a89e95b62 Mon Sep 17 00:00:00 2001 From: HampusM Date: Mon, 23 May 2022 19:47:25 +0200 Subject: refactor: improve input handling in game loop --- src/engine/user/input.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/engine/user/input.cpp') diff --git a/src/engine/user/input.cpp b/src/engine/user/input.cpp index ac6d660..cbba143 100644 --- a/src/engine/user/input.cpp +++ b/src/engine/user/input.cpp @@ -38,6 +38,11 @@ bool UserInputObserver::is_key_pressed(Key key) noexcept return is_key_pressed; } +auto UserInputObserver::get_currently_pressed_key() const noexcept -> Key +{ + return _currently_pressed; +} + void UserInputObserver::clear_currently_pressed() noexcept { _currently_pressed_mutex.lock(); -- cgit v1.2.3-18-g5258