feat: command UnlockAll param rogue tutorial

This commit is contained in:
Somebody
2024-11-16 11:14:06 +08:00
parent a8848f9dcb
commit 33a31bebc8
7 changed files with 135 additions and 26 deletions

View 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);
}
}