Files
aibis-dream/Assets/Scripts/Utility/ConstRef.cs
T
2025-04-22 17:07:31 +08:00

21 lines
820 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";
public const string FixMiddleLayer = "FixMiddle";
public const string DotLineMaterialName = "DotLine";
}
}