fishyboteso/fishy/osservices/linux.py

30 lines
547 B
Python
Raw Normal View History

2023-03-06 17:48:09 +00:00
from typing import Tuple, Optional
from fishy.osservices.os_services import IOSServices
class Linux(IOSServices):
def hide_terminal(self):
pass
def create_shortcut(self):
pass
def get_documents_path(self) -> str:
pass
def is_admin(self) -> bool:
pass
def get_eso_config_path(self) -> str:
pass
def is_eso_active(self) -> bool:
pass
def get_monitor_rect(self):
pass
2023-03-06 17:48:09 +00:00
def get_game_window_rect(self) -> Optional[Tuple[int, int, int, int]]:
pass