Make KeyboardKey a non-exhaustive enum to avoid crashes with unmapped keys. (#319)

Make KeyboardKey a non-exhaustive enum
This commit is contained in:
Jairo Correa 2026-04-03 07:28:54 -03:00 committed by Nikolas
parent 9d9daa7127
commit 67d4311b42
2 changed files with 2 additions and 0 deletions

View file

@ -1839,6 +1839,7 @@ pub const KeyboardKey = enum(c_int) {
//menu = 82,
volume_up = 24,
volume_down = 25,
_,
};
pub const MouseButton = enum(c_int) {

View file

@ -1839,6 +1839,7 @@ pub const KeyboardKey = enum(c_int) {
//menu = 82,
volume_up = 24,
volume_down = 25,
_,
};
pub const MouseButton = enum(c_int) {