dcs-retribution/game/ato/starttype.py
2021-10-22 11:42:13 -07:00

16 lines
290 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.
"""
IN_FLIGHT = "In Flight"
RUNWAY = "Runway"
COLD = "Cold"
WARM = "Warm"