linux-mod-manager/lmm/runners/runner.py

13 lines
275 B
Python
Raw Normal View History

2023-12-02 16:45:16 +00:00
import abc
from lmm.games.game import Game
class Runner(abc.ABC):
# Type identifier of the runner.
runner_type: str
def __init__(self, runner_type: str):
self.runner_type = runner_type
def run(self, game: Game):
raise NotImplementedError()