mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
19 lines
352 B
Python
19 lines
352 B
Python
from enum import Enum, unique
|
|
|
|
|
|
@unique
|
|
class StartType(Enum):
|
|
"""The start type for a Flight.
|
|
|
|
This is distinct from dcs.mission.StartType because we need a fourth state:
|
|
IN_FLIGHT.
|
|
"""
|
|
|
|
COLD = "Cold"
|
|
WARM = "Warm"
|
|
RUNWAY = "Runway"
|
|
IN_FLIGHT = "In Flight"
|
|
|
|
def __str__(self) -> str:
|
|
return f"{self.value}"
|