mirror of
https://github.com/KarolS/millfork.git
synced 2024-11-01 05:05:32 +00:00
14 lines
188 B
Plaintext
14 lines
188 B
Plaintext
// set no mouse as the default
|
|
|
|
import mouse
|
|
|
|
void read_mouse() {
|
|
mouse_x = 0
|
|
mouse_y = 0
|
|
mouse_lbm = false
|
|
#if USE_MOUSE_MBM
|
|
mouse_mbm = false
|
|
#endif
|
|
mouse_rbm = false
|
|
}
|