feat(modifiers): add NONE

This commit is contained in:
Tatesa Uradnik 2025-08-20 18:16:37 +02:00 committed by Héctor Ramón Jiménez
parent 39ca9e0233
commit 6f1fbfdb60
No known key found for this signature in database
GPG key ID: 7CC46565708259A7

View file

@ -24,6 +24,8 @@ bitflags! {
const LOGO = 0b100 << 9;
// const LLOGO = 0b010 << 9;
// const RLOGO = 0b001 << 9;
/// No modifiers
const NONE = 0;
}
}