Files
KianaBH3/Common/Data/Excel/CollectionExcel.cs
2025-06-14 11:15:32 +08:00

17 lines
307 B
C#

namespace KianaBH.Data.Excel;
[ResourceEntity("Collection.json")]
public class CollectionExcel : ExcelResource
{
public int ID { get; set; }
public override int GetId()
{
return ID;
}
public override void Loaded()
{
GameData.CollectionData.Add(ID, this);
}
}