mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
18 lines
415 B
C#
18 lines
415 B
C#
namespace EggLink.DanhengServer.Data.Excel;
|
|
|
|
[ResourceEntity("TrainPartyGridConfig.json")]
|
|
public class TrainPartyGridConfigExcel : ExcelResource
|
|
{
|
|
public int GridID { get; set; }
|
|
public List<int> ParamList { get; set; } = [];
|
|
|
|
public override int GetId()
|
|
{
|
|
return GridID;
|
|
}
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.TrainPartyGridConfigData.Add(GridID, this);
|
|
}
|
|
} |