From e7ee6f733786ee45a7360776ec2534ffdfb8ef8c Mon Sep 17 00:00:00 2001 From: lpw Date: Tue, 18 Mar 2025 16:00:30 +0800 Subject: [PATCH] 配置文件不在放在模块中 --- frameworks/WASdkIntf.framework/Headers/WAPurchaseEvent.h | 39 +++++++++++++++++++++++++++++++++++++++ 1 files changed, 39 insertions(+), 0 deletions(-) diff --git a/frameworks/WASdkIntf.framework/Headers/WAPurchaseEvent.h b/frameworks/WASdkIntf.framework/Headers/WAPurchaseEvent.h new file mode 100644 index 0000000..7c9f865 --- /dev/null +++ b/frameworks/WASdkIntf.framework/Headers/WAPurchaseEvent.h @@ -0,0 +1,39 @@ +// +// WAPurchaseEvent.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 WAPurchaseEvent : WAEvent + + +/** + * ghw_purchase 购买完成事件 + * <br>触发时机:购买完成的时调用 + * + * @param itemName 商品名称 或者 商品ID + * @param itemAmount 交易的数量,一般为 1 + * @param price 交易的总价 + */ + +- (instancetype)initWithItemName:(NSString *)itemName + itemAmount:(int)itemAmount + price:(float)price; + + + + + +@end + + + +NS_ASSUME_NONNULL_END -- Gitblit v1.8.0