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

22 lines
334 B
Plaintext

// Generic module for mouse support
// Resolutions up to 512x256 are supported
import coord
// Mouse X coordinate
x_coord mouse_x
// Mouse Y coordinate
y_coord mouse_y
// Left mouse button pressed
bool mouse_lbm
#if USE_MOUSE_MBM
// Middle mouse button pressed
bool mouse_mbm
#endif
// Right mouse button pressed
bool mouse_rbm