mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
21 lines
541 B
C#
21 lines
541 B
C#
namespace EggLink.DanhengServer.Data.Excel
|
|
{
|
|
[ResourceEntity("AvatarConfig.json", true)]
|
|
public class AvatarConfigExcel : ExcelResource
|
|
{
|
|
public int AvatarID { get; set; } = 0;
|
|
public HashName AvatarName { get; set; } = new();
|
|
|
|
public List<AvatarSkillTreeConfigExcel> DefaultSkillTree = [];
|
|
public override int GetId()
|
|
{
|
|
return AvatarID;
|
|
}
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.AvatarConfigData.Add(AvatarID, this);
|
|
}
|
|
}
|
|
}
|