SFS2X Objective-C API  1.7.13
iOS / macOS / tvOS
InitBuddyListRequest.h
1 //
2 // InitBuddyListRequest.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 #import "BaseRequest.h"
13 
14 EXTERN NSString * const InitBuddyListRequest_KEY_BLIST;
15 EXTERN NSString * const InitBuddyListRequest_KEY_BUDDY_STATES;
16 EXTERN NSString * const InitBuddyListRequest_KEY_MY_VARS;
17 
18 /** Initializes the BuddyList system.
19 
20  This involves loading any previously stored Buddy data from the server, such as the User's Buddy List, his previous state and his persistent Buddy Variables.
21  The init request is <b>the first operation required</b> to initialize the BuddyList system.
22  Once the Init is executed the User can have access to all his previous data and start to interact with his Buddies.
23  */
24 @interface InitBuddyListRequest : BaseRequest {
25 
26 }
27 
28 -(id)init;
29 /**
30 
31  @see [ISFSEvents onBuddyListInit:]
32  @see [ISFSEvents onBuddyError:]
33  @see SFSBuddy
34  @see SFSBuddyVariable
35 
36  */
37 +(id)request;
38 
39 @end
InitBuddyListRequest
Definition: InitBuddyListRequest.h:24