mirror of
https://github.com/FlightControl-Master/MOOSE.git
synced 2025-08-15 10:47:21 +00:00
29 lines
669 B
Lua
29 lines
669 B
Lua
-------------------------------------------------------------------------------
|
|
-- @module DCSCoalitionObject
|
|
|
|
--- @type CoalitionObject
|
|
-- @extends Dcs.DCSWrapper.Object#Object
|
|
|
|
--- @type coalition
|
|
-- @field #coalition.side side
|
|
|
|
--- @type coalition.side
|
|
-- @field NEUTRAL
|
|
-- @field RED
|
|
-- @field BLUE
|
|
|
|
coalition = {} --#coalition
|
|
|
|
--- Returns coalition of the object.
|
|
-- @function [parent=#CoalitionObject] getCoalition
|
|
-- @param #CoalitionObject self
|
|
-- @return Dcs.DCSTypes#coalition.side
|
|
|
|
--- Returns object country.
|
|
-- @function [parent=#CoalitionObject] getCountry
|
|
-- @param #CoalitionObject self
|
|
-- @return #country.id
|
|
|
|
|
|
CoalitionObject = {} --#CoalitionObject
|