SFS2X Objective-C API  1.7.13
iOS / macOS / tvOS
RoomPermissions.h
1 //
2 // RoomPermissions.h
3 // SFS2X
4 //
5 // Original development by Infosfer Game Technologies Ltd. | http://www.infosfer.com.
6 //
7 // Maintained and developed by A51 Integrated.
8 // Copyright 2012 A51 Integrated | http://a51integrated.com. All rights reserved.
9 //
10 
11 
12 /** This object is part of the RoomSettings parameters used for creating a new Room.
13 
14  It describes the permission settings of a new Room
15 
16  @see RoomSettings
17  @see CreateRoomRequest
18 
19  */
20 @interface RoomPermissions : NSObject {
21  BOOL _allowNameChange;
22  BOOL _allowPasswordStateChange;
23  BOOL _allowPublicMessages;
24  BOOL _allowResizing;
25 }
26 
27 @property (readwrite) BOOL allowNameChange;
28 @property (readwrite) BOOL allowPasswordStateChange;
29 @property (readwrite) BOOL allowPublicMessages;
30 @property (readwrite) BOOL allowResizing;
31 
32 +(id)permissions;
33 
34 @end
RoomPermissions
Definition: RoomPermissions.h:20