﻿#if !UNITY_IOS && !UNITY_ANDROID

namespace Stove.StoveSDK
{
    public class IAPInterface
    {
        internal static void SetCustomBillingGUID(string guid) { }
        internal static void Initialize(string identifier) { }
        internal static void FetchProducts(string identifier) { }
        internal static void StartPurchase(string product, string identifier) { }
        internal static void StartPurchase(string product, string serviceOrderId, string optional, string identifier) { }
        internal static void SetListener(string identifier) { }
        internal static bool Flush() { return true; }
        internal static void Consume(string product, string identifier) { }
        internal static void FetchVoidedPurchases(string identifier) { }
        internal static void HandleVoidedPurchases(string identifier) { }
        internal static string GetVersion() { return ""; }
    }
}

#endif