30 lines
695 B
C#
30 lines
695 B
C#
|
|
using System.Collections.Generic;
using System.ComponentModel;
using Gameplay;
using Gameplay.Character;
using Gameplay.Level;
using Gameplay.SubSystems;
using UnityEngine;
public partial class SROptions
{
|
|||
|
|
|
|||
|
|
|
|||
|
|
[Category("TapTapDB")]
|
|||
|
|
|
|||
|
|
public void SetName()
|
|||
|
|
{
|
|||
|
|
#if SDK_TAPTAP
|
|||
|
|
var helper = SDKManager.Instance.GetSdkHelper(SDKManager.SdkName.TapTap) as TapTapSdkHelper;
|
|||
|
|
|
|||
|
|
helper.SetName("123");
|
|||
|
|
#endif
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
|
|||
|
|
[Category("TapTapDB")]
|
|||
|
|
|
|||
|
|
public void SetTestAttri()
|
|||
|
|
{
|
|||
|
|
#if SDK_TAPTAP
|
|||
|
|
var helper = SDKManager.Instance.GetSdkHelper(SDKManager.SdkName.TapTap) as TapTapSdkHelper;
|
|||
|
|
|
|||
|
|
helper.RegisterStaticProperties("startNewer");
|
|||
|
|
#endif
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
}
|