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

MKUserPrivate.h « src - github.com/mumble-voip/mumblekit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0f0704c04b4445cee92178536815e0d9b70a7bfe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Copyright 2009-2012 The MumbleKit Developers. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

@interface MKUser (PrivateMethods)
- (void) removeFromChannel;
- (void) setSession:(NSUInteger)session;
- (void) setUserName:(NSString *)name;
- (void) setUserId:(NSInteger)userId;
- (void) setUserHash:(NSString *)hash;
- (void) setTalkState:(MKTalkState)val;
- (void) setFriend:(BOOL)flag;
- (void) setMuted:(BOOL)flag;
- (void) setDeafened:(BOOL)flag;
- (void) setSuppressed:(BOOL)flag;
- (void) setLocalMuted:(BOOL)flag;
- (void) setSelfMuted:(BOOL)flag;
- (void) setSelfDeafened:(BOOL)flag;
- (void) setPrioritySpeaker:(BOOL)flag;
- (void) setRecording:(BOOL)flag;
- (void) setChannel:(MKChannel *)chan;
- (void) setCommentHash:(NSData *)hash;
- (void) setComment:(NSString *)comment;
- (void) setTextureHash:(NSData *)hash;
- (void) setTexture:(NSData *)texture;
@end