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,17 @@
namespace EggLink.DanhengServer.Data.Excel;
[ResourceEntity("TutorialGuideData.json")]
public class TutorialGuideDataExcel : ExcelResource
{
public int ID { get; set; }
public override int GetId()
{
return ID;
}
public override void Loaded()
{
GameData.TutorialGuideDataData.Add(ID, this);
}
}