From 9eb29fc7cc7aa942fad977d213da63526ca72a33 Mon Sep 17 00:00:00 2001 From: Martysh12 <49569238+Martysh12@users.noreply.github.com> Date: Sun, 19 Dec 2021 21:05:25 +0200 Subject: [PATCH] Changed the naming a bit Changed the naming a bit --- main.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main.py b/main.py index 1f1ce76..bb97a64 100644 --- a/main.py +++ b/main.py @@ -12,7 +12,7 @@ if PLATFORM_SYS == "Windows": import d3dshot -class AbstractAutomatableGame(ABC): +class AbstractGameIO(ABC): """Base class for each platform.""" @abstractmethod @@ -31,7 +31,7 @@ class AbstractAutomatableGame(ABC): pass -class AutomatableGame__Windows(AbstractAutomatableGame): +class WindowsGameIO(AbstractGameIO): def __init__(self): super().__init__(self) self.d = d3dshot.create() @@ -43,7 +43,7 @@ class AutomatableGame__Windows(AbstractAutomatableGame): pass # TODO: Add send_key method -class AutomatableGame__Linux(AbstractAutomatableGame): +class LinuxGameIO(AbstractAutomatableGame): """Base class for each platform.""" def __init__(self):