mirror of
https://github.com/MikuLeaks/MikuSB.git
synced 2026-06-04 18:23:58 +00:00
19 lines
437 B
C#
19 lines
437 B
C#
namespace MikuSB.Data.Excel;
|
|
|
|
[ResourceEntity("support_card.json")]
|
|
public class SupportCardExcel : ExcelResource
|
|
{
|
|
public uint Genre { get; set; }
|
|
public uint Detail { get; set; }
|
|
public uint Particular { get; set; }
|
|
public uint Level { get; set; }
|
|
public uint Icon { get; set; }
|
|
|
|
public override uint GetId() => Icon;
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.SupportCardData.Add(this);
|
|
}
|
|
}
|