mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
19 lines
443 B
C#
19 lines
443 B
C#
namespace EggLink.DanhengServer.Data.Excel;
|
|
|
|
[ResourceEntity("RogueMonster.json")]
|
|
public class RogueMonsterExcel : ExcelResource
|
|
{
|
|
public int RogueMonsterID { get; set; }
|
|
public int NpcMonsterID { get; set; }
|
|
public int EventID { get; set; }
|
|
|
|
public override int GetId()
|
|
{
|
|
return RogueMonsterID;
|
|
}
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.RogueMonsterData.Add(RogueMonsterID, this);
|
|
}
|
|
} |