1
0
mirror of https://github.com/KarolS/millfork.git synced 2024-06-25 19:29:49 +00:00
millfork/include/null_mouse_default.mfk

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
}