//
|
// 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
|