(self)
| 386 | |
| 387 | impl KeyCodeInfo for u32 { |
| 388 | fn is_usb_keycode(self) -> bool { |
| 389 | return UNICODE_BELOW_256 <= self && self <= UNICODE_BELOW_256 + 0xE7; //RGui |
| 390 | } |
| 391 | fn is_private_keycode(self) -> bool { |
| 392 | return UserKey::UK0.to_u32() <= self && self <= UserKey::UK99.to_u32(); //RGui |
| 393 | } |