diff options
| author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-12-17 15:20:29 +0100 | 
|---|---|---|
| committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-12-17 15:20:29 +0100 | 
| commit | ba99bcbac33d05bc2067c9211c0fe453b2930a8d (patch) | |
| tree | a032c8268fece08866d7f398bf781fd356560579 /src/crepe/api/KeyCodes.h | |
| parent | 45a1ab16f29e85de7c2df8832f51967c10c43e92 (diff) | |
| parent | 9232a98b72eee7af4f7f2153c1b2ccedbfa4cc65 (diff) | |
merge master
Diffstat (limited to 'src/crepe/api/KeyCodes.h')
| -rw-r--r-- | src/crepe/api/KeyCodes.h | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/src/crepe/api/KeyCodes.h b/src/crepe/api/KeyCodes.h index fcfc080..1b9573a 100644 --- a/src/crepe/api/KeyCodes.h +++ b/src/crepe/api/KeyCodes.h @@ -1,5 +1,9 @@  #pragma once + +#include <unordered_map> +  namespace crepe { +  //! Enumeration for mouse button inputs, including standard and extended buttons.  enum class MouseButton {  	NONE = 0, //!< No mouse button input. @@ -151,4 +155,6 @@ enum class Keycode {  	/// \}  	MENU = 348, //!< Menu key.  }; +//! Typedef for keyboard state. +typedef std::unordered_map<Keycode, bool> keyboard_state_t;  } // namespace crepe |