mirror of
https://github.com/MikuLeaks/MikuSB.git
synced 2026-06-04 07:44:00 +00:00
18 lines
442 B
C#
18 lines
442 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace MikuSB.Data.Excel;
|
|
|
|
[ResourceEntity("challenge/climbtower/climb_tower_levelorder.json")]
|
|
public class ClimbTowerLevelOrderExcel : ExcelResource
|
|
{
|
|
[JsonProperty("ID")] public uint ID { get; set; }
|
|
[JsonProperty("LevelID")] public uint LevelID { get; set; }
|
|
|
|
public override uint GetId() => ID;
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.ClimbTowerLevelOrderData[ID] = this;
|
|
}
|
|
}
|