mirror of
https://github.com/KarolS/millfork.git
synced 2026-03-12 08:41:45 +00:00
11 lines
136 B
Plaintext
11 lines
136 B
Plaintext
// set no mouse as the default
|
|
|
|
import mouse
|
|
|
|
void read_mouse() {
|
|
mouse_x = 0
|
|
mouse_y = 0
|
|
mouse_lbm = 0
|
|
mouse_rbm = 0
|
|
}
|