mirror of
https://github.com/MikuLeaks/MikuSB.git
synced 2026-06-04 12:03:57 +00:00
23 lines
534 B
C#
23 lines
534 B
C#
namespace MikuSB.Data.Excel;
|
|
|
|
[ResourceEntity("profile.json")]
|
|
public class ProfileExcel : ExcelResource
|
|
{
|
|
public uint Genre { get; set; }
|
|
public uint Detail { get; set; }
|
|
public uint Particular { get; set; }
|
|
public uint Level { get; set; }
|
|
public string I18n { get; set; } = "";
|
|
public string LuaType { get; set; } = "";
|
|
|
|
public override uint GetId()
|
|
{
|
|
return (uint)I18n.GetHashCode();
|
|
}
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.ProfileData.Add(GetId(), this);
|
|
}
|
|
}
|