lpw
2025-03-18 e7ee6f733786ee45a7360776ec2534ffdfb8ef8c
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
29
30
31
32
33
34
35
36
37
38
39
40
41
//
//  WAUserCreateEvent.h
//  WASdkImpl
//
//  Created by lpw on 2025/2/27.
//  Copyright © 2025 GHW-T-01. All rights reserved.
//
/**
 * ghw_user_import 用户进服事件
 */
#import <WASdkIntf/WAEvent.h>
 
NS_ASSUME_NONNULL_BEGIN
 
@interface WAUserCreateEvent : WAEvent
 
 
/**
 * ghw_user_create 用户创角事件
 * <br>触发时机:玩家创建角色成功后调用
 *
 * @param serverId     服务器ID
 * @param gameUserId   游戏角色ID
 * @param nickname     游戏角色名(昵称)
 * @param registerTime 创角时的时间戳,单位为毫秒(1970以后),长度13位。
 */
- (instancetype)initWithServerId:(nonnull NSString *)serverId
                      gameUserId:(nonnull NSString *)gameUserId
                        nickname:(nonnull NSString *)nickname
                    registerTime:(long)registerTime
               optionalParameter:(nullable NSDictionary*)parameterDic;
 
                    
 
 
 
@end
 
 
 
NS_ASSUME_NONNULL_END