This constructor allows you to omit the modifier keys. Instead of doing "{ 0, Key_F5 }" you can now just do "Key_F5"
@@ -19,6 +19,11 @@ public:
, m_key(key)
{
}
+ Shortcut(KeyCode key)
+ : m_modifiers(0)
+ , m_key(key)
+ {
+ }
bool is_valid() const { return m_key != KeyCode::Key_Invalid; }
u8 modifiers() const { return m_modifiers; }