24 lines
716 B
C#
24 lines
716 B
C#
using System.Collections.Generic;
|
|
using Framework;
|
|
using Gameplay.Common;
|
|
|
|
public partial class LegionManager
|
|
{
|
|
/// <summary>
|
|
/// 头像路径列表
|
|
/// </summary>
|
|
public static List<string> HeadIconList = new()
|
|
{
|
|
"Assets/Art/UI/Texture/Icon/HeadPic/Icon_HeadPic_A00001.png",
|
|
"Assets/Art/UI/Texture/Icon/HeadPic/Icon_HeadPic_A00002.png",
|
|
"Assets/Art/UI/Texture/Icon/HeadPic/Icon_HeadPic_A00003.png",
|
|
"Assets/Art/UI/Texture/Icon/HeadPic/Icon_HeadPic_A00004.png",
|
|
"Assets/Art/UI/Texture/Icon/HeadPic/Icon_HeadPic_A00005.png",
|
|
};
|
|
|
|
public static string GetLegionHeadPath(int idx)
|
|
{
|
|
return GLConfig.Inst.data.LegionHeadPicFrontPath;
|
|
}
|
|
|
|
} |