LSGGameActivityViewController.h
853 Bytes
//
// 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