Copied the 89 uncopied AI*SimulationUtility/extension files defining the AIVirtualCard/AIVirtualField extension methods; the compile loop then auto-closed the revealed type deps (~3049 files total, drift-clean). 10.0k -> 62 errors.
25 lines
670 B
C#
25 lines
670 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Cute.Payment;
|
|
|
|
public interface IPaymentCommonCallback
|
|
{
|
|
void OnInitializeSucceeded();
|
|
|
|
void OnInitializeFailed(int errorCode, string errorMessage);
|
|
|
|
void OnPurchaseFailed(string error);
|
|
|
|
void OnPurchaseFailed(int errorCode, string message);
|
|
|
|
void OnPurchaseCancelled(string productId, string price, string currencyCode);
|
|
|
|
void OnGetProductListSucceeded(List<PaymentSkuInfo> productInfo, bool waitUnfinishedTransaction);
|
|
|
|
void OnGetProductListFailed(int errorCode, string errorMessage);
|
|
|
|
void OnConsumePurchaseSucceeded();
|
|
|
|
void OnConsumePurchaseFailed(int errorCode, string errorMessage);
|
|
}
|