mirror of
https://github.com/KarolS/millfork.git
synced 2024-11-01 21:04:51 +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
|
|
}
|