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