Change package /src/chesspp to just /chesspp

This commit is contained in:
2024-01-29 00:56:24 +01:00
parent 31a219ea87
commit 8fcedbbc8c
27 changed files with 124 additions and 124 deletions

11
chesspp/i_strategy.py Normal file
View File

@@ -0,0 +1,11 @@
from abc import ABC, abstractmethod
import chess
# TODO extend class
class IStrategy(ABC):
@abstractmethod
def pick_next_move(self, board: chess.Board) -> chess.Move:
pass