mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
17 lines
343 B
C#
17 lines
343 B
C#
namespace EggLink.DanhengServer.Data.Excel;
|
|
|
|
[ResourceEntity("PamSkinConfig.json")]
|
|
public class PamSkinConfigExcel : ExcelResource
|
|
{
|
|
public int SkinID { get; set; }
|
|
|
|
public override int GetId()
|
|
{
|
|
return SkinID;
|
|
}
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.PamSkinConfigData.Add(SkinID, this);
|
|
}
|
|
} |