mirror of
https://github.com/omltcat/dcs-lua-definitions.git
synced 2026-07-17 07:34:49 +00:00
21 lines
717 B
Lua
21 lines
717 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
|
|
|
|
---Returns the warehouse object associated with the airbase object.<br>
|
|
---Can then be used to call the warehouse class functions to modify the contents of the warehouse.
|
|
---@return Warehouse
|
|
function Airbase:getWarehouse() end |