Files
SVSimServer/SVSim.BattleEngine/Engine/Cute.Payment/IPaymentCommonCallback.cs
gamer147 824309ec44 feat(battle-engine): close the AI-simulation subsystem (verbatim)
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.
2026-06-05 20:30:59 -04:00

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);
}