| 1 | class WMInterface: |
| 2 | def __init__(self) -> None: |
| 3 | pass |
| 4 | |
| 5 | def get_cursor_position(self) -> tuple[int, int]: |
| 6 | """Get cursor position relative to the puppet |
| 7 | |
| 8 | Returns: |
| 9 | tuple [int, int]: (x, y) |
| 10 | """ |
| 11 | return 0,0 |
| 12 | |
| 13 | def get_active_monitor_resolution(self) -> tuple[int, int]: |
| 14 | """Get the resolution of the monitor on which the puppet is displayed |
| 15 | |
| 16 | Returns: |
| 17 | tuple [int, int]: (width, height) |
| 18 | """ |
| 19 | return 1920, 1080 |