Move files into chesspp module
This commit is contained in:
8
chesspp/i_strategy.py
Normal file
8
chesspp/i_strategy.py
Normal file
@@ -0,0 +1,8 @@
|
||||
from abc import ABC, abstractmethod
|
||||
|
||||
# TODO extend class
|
||||
class IStrategy(ABC):
|
||||
|
||||
@abstractmethod
|
||||
def pick_next_move(self, ):
|
||||
pass
|
||||
Reference in New Issue
Block a user