mirror of
https://github.com/MikuLeaks/MikuSB.git
synced 2026-06-04 12:03:57 +00:00
Remove hardcode (Rogue3D_SelectDiff)
This commit is contained in:
17
Common/Data/Excel/Rogue3DDifficultExcel.cs
Normal file
17
Common/Data/Excel/Rogue3DDifficultExcel.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace MikuSB.Data.Excel;
|
||||
|
||||
[ResourceEntity("server_01_difficult.json")]
|
||||
public class Rogue3DDifficultExcel : ExcelResource
|
||||
{
|
||||
[JsonProperty("DifficultID")] public uint DifficultId { get; set; }
|
||||
[JsonProperty("GameplayGroup")] public List<uint> GameplayGroup { get; set; } = [];
|
||||
|
||||
public override uint GetId() => DifficultId;
|
||||
|
||||
public override void Loaded()
|
||||
{
|
||||
GameData.Rogue3DDifficultData[DifficultId] = this;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user