mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-12 13:04:33 +01:00
19 lines
376 B
C#
19 lines
376 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace KianaBH.Data.Excel;
|
|
|
|
[ResourceEntity("FrameData.json")]
|
|
public class FrameDataExcel : ExcelResource
|
|
{
|
|
[JsonPropertyName("id")] public uint Id { get; set; }
|
|
|
|
public override int GetId()
|
|
{
|
|
return (int)Id;
|
|
}
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.FrameData.Add(GetId(), this);
|
|
}
|
|
} |