mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
20 lines
517 B
C#
20 lines
517 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 List<int> MazeSkillIdList { get; set; } = [];
|
|
public string PlayerJsonPath { get; set; } = "";
|
|
|
|
public override int GetId()
|
|
{
|
|
return ID;
|
|
}
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.AdventurePlayerData[ID] = this;
|
|
}
|
|
} |