Files
aibis-dream/Assets/Scripts/Utility/ConstRef.cs
T
dingyuntian 9f20ef52d8 UI工具翻新
1. 增加UI工具
2. 增加设置页面
3. GameLoop更新
4. 导入ActionKit工具
2025-04-21 18:53:30 +08:00

17 lines
699 B
C#

using UnityEngine;
namespace AibisDream.Utility
{
public static class ConstRef
{
public const string QQURL = "https://qm.qq.com/cgi-bin/qm/qr?_wv=1027&k=XQFpOqRb1_zqkCdR2bLT3kHb11XzZ54T" +
"&authKey=w8G8qxzecnATXDOec1Ybv8LA%2FTTN8gQkyegvbK%2FUZ9m90WxggTjXy2U6%2FJes" +
"WJF3&noverify=0&group_code=325268983";
public const string BugSurveyURL = "https://wj.qq.com/s2/18309384/e356/";
public const string SurveyURL = "https://wj.qq.com/s2/15348910/3c8c/";
public static readonly string TestSaveFilePath = Application.streamingAssetsPath + "/TestSaveFiles";
}
}