Move files into chesspp module

This commit is contained in:
2024-01-27 21:08:37 +01:00
parent 17e5bebd88
commit 69aa9ce2d9
10 changed files with 9 additions and 9 deletions

8
chesspp/i_strategy.py Normal file
View File

@@ -0,0 +1,8 @@
from abc import ABC, abstractmethod
# TODO extend class
class IStrategy(ABC):
@abstractmethod
def pick_next_move(self, ):
pass