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