lpw
5 days ago a7f5a97a0c8b97d0c6c28fcd92cf65888c7cbb4a
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
//
//  WAStageEvent.h
//  WASdkImpl
//
//  Created by lpw on 2025/2/27.
//  Copyright © 2025 GHW-T-01. All rights reserved.
//
 
#import <WASdkIntf/WAEvent.h>
 
NS_ASSUME_NONNULL_BEGIN
 
@interface WAStageEvent : WAEvent
 
 
/**
 * ghw_self_stage_x 关键等级,传递时,只需传递string类型的关卡,sdk内部会自动携带ghw_self_stage_x前缀
 * <br>触发时机:玩家达到关键关卡(需要运营决定)时调用
 *
 * @param stage 关卡
 */
- (instancetype)initWithStage:(NSString *)stage;
 
 
 
 
@end
 
 
 
NS_ASSUME_NONNULL_END