9 lines
145 B
Python
9 lines
145 B
Python
from abc import ABC, abstractmethod
|
|
|
|
# TODO extend class
|
|
class IStrategy(ABC):
|
|
|
|
@abstractmethod
|
|
def pick_next_move(self, ):
|
|
pass
|