mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
20 lines
549 B
C#
20 lines
549 B
C#
namespace EggLink.DanhengServer.Data.Excel;
|
|
|
|
[ResourceEntity("RogueTournDifficulty.json")]
|
|
public class RogueTournDifficultyExcel : ExcelResource
|
|
{
|
|
public int DifficultyID { get; set; }
|
|
public List<int> DifficultyCutList { get; set; } = [];
|
|
public List<int> DifficultyLevelGroup { get; set; } = [];
|
|
public List<int> LevelList { get; set; } = [];
|
|
|
|
public override int GetId()
|
|
{
|
|
return DifficultyID;
|
|
}
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.RogueTournDifficultyData.Add(GetId(), this);
|
|
}
|
|
} |