mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
18 lines
393 B
C#
18 lines
393 B
C#
namespace EggLink.DanhengServer.Data.Excel;
|
|
|
|
[ResourceEntity("TutorialData.json")]
|
|
public class TutorialDataExcel : ExcelResource
|
|
{
|
|
public int TutorialID { get; set; }
|
|
public int Priority { get; set; }
|
|
|
|
public override int GetId()
|
|
{
|
|
return TutorialID;
|
|
}
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.TutorialDataData.TryAdd(TutorialID, this);
|
|
}
|
|
} |