1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 13:17:35 +00:00

Minesweeper: Add some menus.

This commit is contained in:
Andreas Kling 2019-04-13 14:32:18 +02:00
parent 49b63efddb
commit 198a1a6877
2 changed files with 27 additions and 0 deletions

View file

@ -111,6 +111,7 @@ enum KeyCode : byte {
};
enum KeyModifier {
Mod_None = 0x00,
Mod_Alt = 0x01,
Mod_Ctrl = 0x02,
Mod_Shift = 0x04,