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