Blame view
GameActivitySDK/LSGGameActivityViewController.h
853 Bytes
22b03300f
![]() |
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 28 |
// // LSGGameActivityViewController.h // GameActivitySDK // // Created by yanglele on 2018/6/11. // Copyright © 2018年 alexYang. All rights reserved. // #import <UIKit/UIKit.h> @interface LSGGameActivityViewController : UIViewController //appId=100&appKey=f899139df5e1059396431415e770c6dd&userId=123456&serverId=111&serverName=aaa&roleId=222&roleName=ccc&diamond=888 @property(nonatomic, copy) NSString *appId; @property(nonatomic, copy) NSString *appKey; @property(nonatomic, copy) NSString *userId; @property(nonatomic, copy) NSString *serverId; @property(nonatomic, copy) NSString *serverName; @property(nonatomic, copy) NSString *roleId; @property(nonatomic, copy) NSString *roleName; @property(nonatomic, copy) NSString *diamond; @property(nonatomic, assign) BOOL *isDebug; @property(nonatomic, copy) void(^accomplistCallBack)(); @end |