lpw
2025-03-18 4b4fada0304289ba49fe0bacaac077fa41d1df5c
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
//
//  WALevelAchievedEvent.h
//  WASdkImpl
//
//  Created by lpw on 2025/2/27.
//  Copyright © 2025 GHW-T-01. All rights reserved.
//
/**
 * ghw_level_achieved 等级增长事件
 */
#import <WASdkIntf/WAEvent.h>
 
NS_ASSUME_NONNULL_BEGIN
 
@interface WALevelAchievedEvent : WAEvent
 
 
/**
 * ghw_level_achieved 等级增长事件
 * <br>触发时机:玩家达到新的等级时调用
 *
 * @param currentLevel 当前等级
 */
- (instancetype)initWithCurrentLevel:(int)currentLevel optionalParameter:(nullable NSDictionary*)parameterDic;
 
 
 
 
 
@end
 
 
 
NS_ASSUME_NONNULL_END