mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
20 lines
495 B
C#
20 lines
495 B
C#
namespace EggLink.DanhengServer.Data.Excel;
|
|
|
|
[ResourceEntity("MazePuzzleSwitchHand.json")]
|
|
public class MazePuzzleSwitchHandExcel : ExcelResource
|
|
{
|
|
public int SwitchID { get; set; }
|
|
public int PlaneID { get; set; }
|
|
public int FloorID { get; set; }
|
|
public List<int> SwitchHandID { get; set; } = [];
|
|
|
|
public override int GetId()
|
|
{
|
|
return SwitchID;
|
|
}
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.MazePuzzleSwitchHandData.Add(SwitchID, this);
|
|
}
|
|
} |