1
0
mirror of https://github.com/KarolS/millfork.git synced 2024-06-09 16:29:34 +00:00
millfork/include/null_mouse_default.mfk

14 lines
188 B
Plaintext
Raw Normal View History

2018-12-17 16:18:29 +00:00
// 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
2018-12-17 16:18:29 +00:00
}