Make it more explicit that Key modifiers is a bit field

This commit is contained in:
Maxime Coste 2014-10-15 19:13:51 +01:00
parent 1128d941ff
commit 9c2f9d5547

View File

@ -14,9 +14,9 @@ struct Key
enum class Modifiers
{
None = 0,
Control = 1,
Alt = 2,
ControlAlt = 3
Control = 1 << 0,
Alt = 1 << 1,
ControlAlt = Control | Alt
};
enum NamedKey : Codepoint
{