mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
18 lines
413 B
C#
18 lines
413 B
C#
namespace EggLink.DanhengServer.Data.Excel;
|
|
|
|
[ResourceEntity("GridFightEquipUpgrade.json")]
|
|
public class GridFightEquipUpgradeExcel : ExcelResource
|
|
{
|
|
public uint PreID { get; set; }
|
|
public uint UpgradeID { get; set; }
|
|
|
|
public override int GetId()
|
|
{
|
|
return (int)PreID;
|
|
}
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.GridFightEquipUpgradeData.TryAdd(PreID, this);
|
|
}
|
|
} |