NLDClient-yudde/ProjectNLD/Assets/Code/Scripts/Gameplay/Legion/LegionManager.UI.cs

50 lines
1.3 KiB
C#

using System.Collections.Generic;
using Framework;
public partial class LegionManager
{
/// <summary>
/// 头像路径列表
/// </summary>
public static List<string> HeadIconList = new()
{
Constants.UI_LEGION_HEAD_PATH + "Icon_HeadPic_A00001.png",
Constants.UI_LEGION_HEAD_PATH + "Icon_HeadPic_A00002.png",
Constants.UI_LEGION_HEAD_PATH + "Icon_HeadPic_A00003.png",
Constants.UI_LEGION_HEAD_PATH + "Icon_HeadPic_A00004.png",
Constants.UI_LEGION_HEAD_PATH + "Icon_HeadPic_A00005.png",
};
/// <summary>
/// 标签Key列表
/// </summary>
public static List<string> TagKeyList = new()
{
"Legion_Label_1",
"Legion_Label_2",
"Legion_Label_3",
"Legion_Label_4",
"Legion_Label_5",
"Legion_Label_6",
"Legion_Label_7",
"Legion_Label_8",
"Legion_Label_9",
"Legion_Label_10",
"Legion_Label_11",
"Legion_Label_12",
"Legion_Label_13",
"Legion_Label_14",
"Legion_Label_15"
};
/// <summary>
/// 宣言内容
/// </summary>
public static List<string> ManifestoList = new()
{
"Legion_Declaration_1",
"Legion_Declaration_2",
"Legion_Declaration_3",
"Legion_Declaration_4"
};
}