mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-22 14:20:20 +00:00
Voice Chat UI improvements
This commit is contained in:
@@ -196,13 +196,16 @@ public struct PresentationGroupCallSummaryState: Equatable {
|
||||
public struct PresentationGroupCallMemberState: Equatable {
|
||||
public var ssrc: UInt32
|
||||
public var muteState: GroupCallParticipantsContext.Participant.MuteState?
|
||||
public var speaking: Bool
|
||||
|
||||
public init(
|
||||
ssrc: UInt32,
|
||||
muteState: GroupCallParticipantsContext.Participant.MuteState?
|
||||
muteState: GroupCallParticipantsContext.Participant.MuteState?,
|
||||
speaking: Bool
|
||||
) {
|
||||
self.ssrc = ssrc
|
||||
self.muteState = muteState
|
||||
self.speaking = speaking
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user