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