12 lines
353 B
C#
12 lines
353 B
C#
|
using UnityEngine.Purchasing;
|
||
|
using UnityEngine.Purchasing.Extension;
|
||
|
|
||
|
namespace UnityEngine.Purchasing
|
||
|
{
|
||
|
internal interface INativeStoreProvider
|
||
|
{
|
||
|
INativeStore GetAndroidStore(IUnityCallback callback, AppStore store, IPurchasingBinder binder, Uniject.IUtil util);
|
||
|
INativeAppleStore GetStorekit(IUnityCallback callback);
|
||
|
}
|
||
|
}
|