mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
18 lines
410 B
C#
18 lines
410 B
C#
namespace EggLink.DanhengServer.Data.Excel;
|
|
|
|
[ResourceEntity("AdventurePlayer.json")]
|
|
public class AdventurePlayerExcel : ExcelResource
|
|
{
|
|
public int AvatarID { get; set; } = 0;
|
|
public string PlayerJsonPath { get; set; } = "";
|
|
|
|
public override int GetId()
|
|
{
|
|
return AvatarID;
|
|
}
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.AdventurePlayerData[AvatarID] = this;
|
|
}
|
|
} |