mirror of
https://github.com/fishyboteso/fishyboteso.git
synced 2024-08-30 18:32:13 +00:00
3ce3c24dd1
- restructed player and recorder to work with new system, - remove FullAuto.State
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):
|
|
...
|