修改TangleData需要客户端进行实现
parent
95e9601058
commit
2028452f05
|
|
@ -13,27 +13,9 @@ namespace GuruService
|
|||
public abstract bool IsDebugMode { get; }
|
||||
public abstract Dictionary<string, object> GetDefaultRemoteData();
|
||||
|
||||
public virtual byte[] GetGooglePlayTangleData()
|
||||
{
|
||||
if (!IsIAPEnabled) return null;
|
||||
|
||||
#if UNITY_EDITOR
|
||||
return null;
|
||||
#else
|
||||
return GooglePlayTangle.Data();
|
||||
#endif
|
||||
}
|
||||
public abstract byte[] GetGooglePlayTangleData();
|
||||
|
||||
public virtual byte[] GetAppleTangleData()
|
||||
{
|
||||
if (!IsIAPEnabled) return null;
|
||||
|
||||
#if UNITY_EDITOR
|
||||
return null;
|
||||
#else
|
||||
return AppleTangle.Data();
|
||||
#endif
|
||||
}
|
||||
public abstract byte[] GetAppleTangleData();
|
||||
|
||||
public void SetBLevel(int level)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue