mirror of
https://github.com/MikuLeaks/MikuSB.git
synced 2026-06-04 11:24:00 +00:00
ClimbTowerLogic_GetReward
This commit is contained in:
17
Common/Data/Excel/ClimbTowerLevelOrderExcel.cs
Normal file
17
Common/Data/Excel/ClimbTowerLevelOrderExcel.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user