* Improved menu interaction * Added Overview message * Added Pinning functionality. Pinning a mission so you can easily pull up the briefing again. * Added "Clear View" command to get rid of the message on the screen.
41 lines
645 B
Lua
41 lines
645 B
Lua
|
|
|
|
|
|
do -- mission aliases
|
|
|
|
--- @alias MissionPriority
|
|
--- | "none"
|
|
--- | "primary"
|
|
--- | "secondary"
|
|
|
|
--- @alias missionType
|
|
--- | "nil"
|
|
--- | "STRIKE"
|
|
--- | "BAI"
|
|
--- | "DEAD"
|
|
--- | "SAM"
|
|
|
|
--- @alias MissionState
|
|
--- | "NEW"
|
|
--- | "ACTIVE"
|
|
--- | "COMPLETED"
|
|
|
|
--- @alias LogLevel
|
|
--- | "DEBUG"
|
|
--- | "INFO"
|
|
--- | "WARN"
|
|
--- | "ERROR"
|
|
--- | "NONE"
|
|
|
|
|
|
|
|
---@class Array<T>: { [integer]: T }
|
|
|
|
--- @class Position
|
|
--- @field x number x position (Top-Down on Map)
|
|
--- @field y number y altitude
|
|
--- @field z number z position (Left-Right on Map)
|
|
|
|
end
|
|
|