mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
20 lines
427 B
C#
20 lines
427 B
C#
using System.Collections.Generic;
|
|
|
|
namespace EggLink.DanhengServer.Data.Excel;
|
|
|
|
[ResourceEntity("GridFightItems.json")]
|
|
public class GridFightItemsExcel : ExcelResource
|
|
{
|
|
public uint ID { get; set; }
|
|
public HashName ItemName { get; set; } = new();
|
|
|
|
public override int GetId()
|
|
{
|
|
return (int)ID;
|
|
}
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.GridFightItemsData.TryAdd(ID, this);
|
|
}
|
|
} |