//
|
// WAUserInfoUpdateEvent.h
|
// WASdkImpl
|
//
|
// Created by lpw on 2025/2/27.
|
// Copyright © 2025 GHW-T-01. All rights reserved.
|
// ghw_user_info_update 更新用户信息
|
|
#import <WASdkIntf/WAEvent.h>
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@interface WAUserInfoUpdateEvent : WAEvent
|
|
|
/**
|
* ghw_user_info_update 更新用户信息
|
* <br>触发时机:玩家更改角色昵称时(必须),或信息更新时(可选)
|
*
|
* @param nickname 游戏角色名(昵称)
|
*/
|
- (instancetype)initWithNickname:(nonnull NSString *)nickname
|
optionalParameter:(nullable NSDictionary*)parameterDic;
|
|
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|