Files
DanhengServer-OpenSource/Common/Data/Excel/ChallengeGroupExcel.cs
2024-07-09 16:28:02 +08:00

28 lines
706 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EggLink.DanhengServer.Data.Excel
{
[ResourceEntity("ChallengeGroupConfig.json,ChallengeStoryGroupConfig.json,ChallengeBossGroupConfig.json",
isMultifile: true)]
public class ChallengeGroupExcel : ExcelResource
{
public int GroupID { get; set; }
public int RewardLineGroupID { get; set; }
public int SchduleID { get; set; }
public override int GetId()
{
return GroupID;
}
public override void Loaded()
{
GameData.ChallengeGroupData[GroupID] = this;
}
}
}