mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
19 lines
448 B
C#
19 lines
448 B
C#
namespace EggLink.DanhengServer.Data.Excel;
|
|
|
|
[ResourceEntity("MazeSkill.json,MazeSkillLD.json", true)]
|
|
public class MazeSkillExcel : ExcelResource
|
|
{
|
|
public int MazeSkillId { get; set; }
|
|
public int MPCost { get; set; }
|
|
public int MazeSkilltype { get; set; }
|
|
|
|
public override int GetId()
|
|
{
|
|
return MazeSkillId;
|
|
}
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.MazeSkillData.TryAdd(MazeSkillId, this);
|
|
}
|
|
} |