mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
feat: command UnlockAll param rogue tutorial
This commit is contained in:
18
Common/Data/Excel/TutorialDataExcel.cs
Normal file
18
Common/Data/Excel/TutorialDataExcel.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
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.Add(TutorialID, this);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user