Main/resources/[voice]/saltychat/client/models/SoundState.lua
2025-06-07 08:51:21 +02:00

11 lines
No EOL
276 B
Lua

---@class SoundState
---@field IsMicrophoneMuted boolean
---@field IsMicrophoneEnabled boolean
---@field IsSoundMuted boolean
---@field IsSoundEnabled boolean
SoundState = {
IsMicrophoneMuted = nil,
IsMicrophoneEnabled = nil,
IsSoundMuted = nil,
IsSoundEnabled = nil
}