mirror of
https://github.com/fishyboteso/fishyboteso.git
synced 2024-08-30 18:32:13 +00:00
15 lines
190 B
Python
15 lines
190 B
Python
|
from abc import ABC, abstractmethod
|
||
|
from enum import Enum
|
||
|
|
||
|
|
||
|
class FullAutoMode(Enum):
|
||
|
Player = 0
|
||
|
Recorder = 1
|
||
|
|
||
|
|
||
|
class IMode(ABC):
|
||
|
|
||
|
@abstractmethod
|
||
|
def run(self):
|
||
|
...
|