SFS2X Objective-C API  1.7.13
iOS / macOS / tvOS
LogoutRequest.h
1 //
2 // LogoutRequest.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 #import "BaseRequest.h"
12 
13 EXTERN NSString * const LogoutRequest_KEY_ZONE_NAME;
14 
15 /** Log out of the current Zone
16 
17  This will not shut down the connection and User will be able to login again in the same Zone or another one
18  */
19 @interface LogoutRequest : BaseRequest {
20 
21 }
22 
23 /**
24 
25  @see [ISFSEvents onLogout:]
26  @see LoginRequest
27 
28  */
29 +(id)request;
30 
31 @end
LogoutRequest
Definition: LogoutRequest.h:19