added base classes for mcts and strategy

This commit is contained in:
2024-01-26 18:01:11 +01:00
parent 62410d239f
commit e4fa09bac3
6 changed files with 1240 additions and 40 deletions

8
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