Changed the naming a bit

Changed the naming a bit
This commit is contained in:
Martysh12 2021-12-19 21:05:25 +02:00
parent 6e5dd7eab4
commit 9eb29fc7cc
1 changed files with 3 additions and 3 deletions

View File

@ -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):