mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
19 lines
431 B
C#
19 lines
431 B
C#
namespace EggLink.DanhengServer.Data.Excel;
|
|
|
|
[ResourceEntity("GridFightRoleStar.json")]
|
|
public class GridFightRoleStarExcel : ExcelResource
|
|
{
|
|
public uint ID { get; set; }
|
|
public uint Star { get; set; }
|
|
public uint BEID { get; set; }
|
|
|
|
public override int GetId()
|
|
{
|
|
return (int)ID;
|
|
}
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.GridFightRoleStarData.TryAdd(ID << 4 | Star, this);
|
|
}
|
|
} |