mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
18 lines
354 B
C#
18 lines
354 B
C#
namespace EggLink.DanhengServer.Data.Excel;
|
|
|
|
[ResourceEntity("AvatarSkin.json")]
|
|
public class AvatarSkinExcel : ExcelResource
|
|
{
|
|
public int ID { get; set; }
|
|
public int AvatarID { get; set; }
|
|
|
|
public override int GetId()
|
|
{
|
|
return ID;
|
|
}
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.AvatarSkinData[ID] = this;
|
|
}
|
|
} |