mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
23 lines
552 B
Python
23 lines
552 B
Python
from datetime import datetime, timedelta
|
|
|
|
from .flightstate import FlightState
|
|
from ..starttype import StartType
|
|
|
|
|
|
class Completed(FlightState):
|
|
def on_game_tick(self, time: datetime, duration: timedelta) -> None:
|
|
return
|
|
|
|
@property
|
|
def is_waiting_for_start(self) -> bool:
|
|
return False
|
|
|
|
@property
|
|
def spawn_type(self) -> StartType:
|
|
# TODO: May want to do something different to make these uncontrolled?
|
|
return StartType.COLD
|
|
|
|
@property
|
|
def description(self) -> str:
|
|
return "Completed"
|