mirror of
https://github.com/omltcat/dcs-lua-definitions.git
synced 2025-11-10 15:48:52 +00:00
16 lines
487 B
Lua
16 lines
487 B
Lua
---@meta
|
|
|
|
---@class Airbase: CoalitionObject
|
|
---@field id_ integer
|
|
Airbase = {}
|
|
---@enum Airbase.Category
|
|
Airbase.Category = {
|
|
AIRDROME = 0,
|
|
HELIPAD = 1,
|
|
SHIP = 2,
|
|
}
|
|
|
|
---Returns a localized string of the airbases's callsign.<br>
|
|
---In the case of airbases, the callsign of world airbases is defined by the game. Callsigns for units, farps, or ships can be specified by the user with the mission editor or scripting engine.
|
|
---@return string
|
|
function Airbase:getCallsign() end |