Files
DanhengServer-OpenSource/Common/Data/Excel/ChallengeBossExtraExcel.cs
Somebody 87d228eb79 Feature:Asynchronous Operation & Formatting Code
- Now the async operation is enabled!
- Code formatted by Resharper plugin <3
2024-07-22 17:12:03 +08:00

24 lines
568 B
C#

namespace EggLink.DanhengServer.Data.Excel;
[ResourceEntity("ChallengeBossMazeExtra.json")]
public class ChallengeBossExtraExcel : ExcelResource
{
public int ID { get; set; }
public int MonsterID1 { get; set; }
public int MonsterID2 { get; set; }
public override int GetId()
{
return ID;
}
public override void Loaded()
{
if (GameData.ChallengeConfigData.ContainsKey(ID))
{
var challengeExcel = GameData.ChallengeConfigData[ID];
challengeExcel.SetBossExcel(this);
}
}
}