mirror of
https://github.com/omltcat/dcs-lua-definitions.git
synced 2026-08-04 14:58:06 +00:00
Add functions in server GUI
Add AI enum table Add some missing functions
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
---@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
|
||||
Reference in New Issue
Block a user