mirror of
https://github.com/DavidGailleton/42-Piscine_Python.git
synced 2026-03-14 05:06:55 +01:00
module 7 ex3 WIP
This commit is contained in:
9
07/ex3/AggresiveStrategy.py
Normal file
9
07/ex3/AggresiveStrategy.py
Normal file
@@ -0,0 +1,9 @@
|
||||
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: ...
|
||||
Reference in New Issue
Block a user