mirror of
https://github.com/DavidGailleton/42-Piscine_Python.git
synced 2026-03-13 20:56:54 +01:00
10 lines
268 B
Python
10 lines
268 B
Python
from .GameStrategy import GameStrategy
|
|
|
|
|
|
class AgressiveStrategy(GameStrategy):
|
|
def execute_turn(self, hand: list, battlefield: list) -> dict: ...
|
|
|
|
def get_strategy_name(self) -> str: ...
|
|
|
|
def prioritize_targets(self, available_targets: list) -> list: ...
|