1
0
mirror of https://github.com/KarolS/millfork.git synced 2024-07-28 04:28:55 +00:00
millfork/include/mouse.mfk

22 lines
334 B
Plaintext
Raw Normal View History

2017-12-06 23:23:30 +00:00
// Generic module for mouse support
// Resolutions up to 512x256 are supported
import coord
2017-12-06 23:23:30 +00:00
// Mouse X coordinate
x_coord mouse_x
2017-12-06 23:23:30 +00:00
// 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