mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
17 lines
394 B
C#
17 lines
394 B
C#
namespace EggLink.DanhengServer.Data.Excel;
|
|
|
|
[ResourceEntity("TrainPartyPassengerConfig.json")]
|
|
public class TrainPartyPassengerConfigExcel : ExcelResource
|
|
{
|
|
public int PassengerID { get; set; }
|
|
|
|
public override int GetId()
|
|
{
|
|
return PassengerID;
|
|
}
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.TrainPartyPassengerConfigData.Add(PassengerID, this);
|
|
}
|
|
} |