mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
16 lines
385 B
Python
16 lines
385 B
Python
from __future__ import annotations
|
|
|
|
from abc import abstractmethod
|
|
from typing import TYPE_CHECKING
|
|
|
|
from game.commander.theaterstate import TheaterState
|
|
from game.htn import PrimitiveTask
|
|
|
|
if TYPE_CHECKING:
|
|
from game.coalition import Coalition
|
|
|
|
|
|
class TheaterCommanderTask(PrimitiveTask[TheaterState]):
|
|
@abstractmethod
|
|
def execute(self, coalition: Coalition) -> None: ...
|