Change package /src/chesspp to just /chesspp
This commit is contained in:
11
chesspp/i_strategy.py
Normal file
11
chesspp/i_strategy.py
Normal 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
|
||||
Reference in New Issue
Block a user