v/vlib/gg/keyboard.v
2025-03-13 11:40:39 +02:00

9 lines
260 B
V

module gg
// is_key_down returns whether the given key is currently pressed.
// You can use this, if you do not want to implement your own key event handling.
@[inline]
pub fn (mut ctx Context) is_key_down(k KeyCode) bool {
return ctx.pressed_keys[int(k)]
}