Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumblekit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/MKUser.m')
-rw-r--r--src/MKUser.m23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/MKUser.m b/src/MKUser.m
index 6513fed..ac75242 100644
--- a/src/MKUser.m
+++ b/src/MKUser.m
@@ -34,6 +34,29 @@
#import <MumbleKit/MKChannel.h>
#import "MKChannelPrivate.h"
+@interface MKUser () {
+ BOOL _muted;
+ BOOL _deafened;
+ BOOL _suppressed;
+ BOOL _localMuted;
+ BOOL _selfMuted;
+ BOOL _selfDeafened;
+ BOOL _friend;
+ BOOL _prioritySpeaker;
+ BOOL _recording;
+ MKTalkState _talkState;
+ NSUInteger _session;
+ NSInteger _userId;
+ NSString *_userHash;
+ NSString *_username;
+ MKChannel *_channel;
+ NSString *_comment;
+ NSData *_commentHash;
+ NSData *_texture;
+ NSData *_textureHash;
+}
+@end
+
@implementation MKUser
- (id) init {