ableos/sysdata/libraries/intouch/src/lib.hb

22 lines
325 B
Plaintext
Raw Normal View History

2024-09-18 00:26:37 +00:00
keycodes := @use("rel:keycodes.hb");
.{KeyCode} := keycodes
MouseEvent := struct {
x_change: u8,
y_change: u8,
left: u8,
middle: u8,
right: u8,
}
KeyEvent := struct {
// 0 if down
// 1 if up
up: u8,
// 0 if not just triggered
// 1 if just triggered
just_triggered: u8,
key: KeyCode,
}
GamepadEvent := struct {}