Main/resources/[voice]/saltychat/client/models/SoundState.lua

11 lines
276 B
Lua
Raw Normal View History

2025-06-07 08:51:21 +02:00
---@class SoundState
---@field IsMicrophoneMuted boolean
---@field IsMicrophoneEnabled boolean
---@field IsSoundMuted boolean
---@field IsSoundEnabled boolean
SoundState = {
IsMicrophoneMuted = nil,
IsMicrophoneEnabled = nil,
IsSoundMuted = nil,
IsSoundEnabled = nil
}