mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 12:46:03 +08:00
26 lines
586 B
C#
26 lines
586 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
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;
|
|
}
|
|
}
|
|
}
|