mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
19 lines
427 B
C#
19 lines
427 B
C#
namespace EggLink.DanhengServer.Data.Excel;
|
|
|
|
[ResourceEntity("QuestData.json")]
|
|
public class QuestDataExcel : ExcelResource
|
|
{
|
|
public int QuestID { get; set; }
|
|
public int QuestType { get; set; }
|
|
public HashName QuestTitle { get; set; } = new();
|
|
|
|
public override int GetId()
|
|
{
|
|
return QuestID;
|
|
}
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.QuestDataData.Add(QuestID, this);
|
|
}
|
|
} |