mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
21 lines
530 B
C#
21 lines
530 B
C#
namespace EggLink.DanhengServer.Data.Excel;
|
|
|
|
[ResourceEntity("TrainPartyTeam.json")]
|
|
public class TrainPartyTeamExcel : ExcelResource
|
|
{
|
|
public int TeamID { get; set; }
|
|
public int InitialMeetingSkill { get; set; }
|
|
public int LeaderWorkingBuffID { get; set; }
|
|
public int GridNum { get; set; }
|
|
public List<int> PassengerList { get; set; }
|
|
|
|
public override int GetId()
|
|
{
|
|
return TeamID;
|
|
}
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.TrainPartyTeamData.Add(TeamID, this);
|
|
}
|
|
} |