1
0
mirror of https://github.com/MarkParker5/STARK.git synced 2025-02-17 11:55:35 +02:00
STARK/Controls/Control.py
2021-08-21 02:09:37 +03:00

9 lines
149 B
Python

from abc import ABC, abstractmethod
class Control(ABC):
@abstractmethod
def start(self):
# entry point of the control
pass