Files
DanhengServer-OpenSource/Common/Data/Excel/AdventurePlayerExcel.cs
2025-04-22 22:42:20 +08:00

19 lines
460 B
C#

namespace EggLink.DanhengServer.Data.Excel;
[ResourceEntity("AdventurePlayer.json,ActivityAdventurePlayer.json", true)]
public class AdventurePlayerExcel : ExcelResource
{
public int ID { get; set; }
public int AvatarID { get; set; }
public string PlayerJsonPath { get; set; } = "";
public override int GetId()
{
return ID;
}
public override void Loaded()
{
GameData.AdventurePlayerData[ID] = this;
}
}