12 lines
307 B
C#
12 lines
307 B
C#
using System.Collections.Generic;
|
|
using cfg;
|
|
using game;
|
|
using GameCore;
|
|
|
|
namespace OrderManager
|
|
{
|
|
public interface IOrderSuccess
|
|
{
|
|
void OnOrderSuccess(ShopBuyTypeData buyType, IAPItemList iAPItemList, List<ItemData> itemDataGift, RewardType rewardShowType, bool voucher = false);
|
|
}
|
|
} |