mirror of
https://github.com/MikuLeaks/MikuSB.git
synced 2026-06-04 16:03:59 +00:00
15 lines
290 B
C#
15 lines
290 B
C#
namespace MikuSB.Data.Excel;
|
|
|
|
[ResourceEntity("chapter/level.json")]
|
|
public class ChapterLevelExcel : ExcelResource
|
|
{
|
|
public uint ID { get; set; }
|
|
|
|
public override uint GetId() => ID;
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.ChapterLevelData.Add(ID, this);
|
|
}
|
|
}
|