if (FGamePotSDKPluginModule::IsGamePotSdkAvailable())
{
FGamePotSDKPluginModule::GetSharedGamePotSdk()->coupon(FString couponNumber);// 优惠券号码
FGamePotSDKPluginModule::GetSharedGamePotSdk()->coupon(FString couponNumber, FString userData);// 优惠券号码、用户信息
}
void ASampleGameModeBase::OnCouponSuccess(FString msg)
{
/// 优惠券使用成功
}
void ASampleGameModeBase::OnCouponFailure(FNError NError)
{
// 优惠券使用失败。请使用error.message显示错误消息。
}