mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-12 13:04:33 +01:00
17 lines
307 B
C#
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);
|
|
}
|
|
} |