mirror of
https://github.com/omltcat/dcs-lua-definitions.git
synced 2025-11-10 15:48:52 +00:00
11 lines
207 B
Lua
11 lines
207 B
Lua
---@meta
|
|
|
|
---The radio enumerator has a single table that defines the radio modulation used to transmit.
|
|
---@class radio
|
|
radio = {}
|
|
|
|
---@enum radio.modulation
|
|
radio.modulation = {
|
|
AM = 0,
|
|
FM = 1
|
|
} |