mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
18 lines
446 B
C#
18 lines
446 B
C#
namespace EggLink.DanhengServer.Data.Excel;
|
|
|
|
[ResourceEntity("RogueDialogueDynamicDisplay.json")]
|
|
public class RogueDialogueDynamicDisplayExcel : ExcelResource
|
|
{
|
|
public int DisplayID { get; set; }
|
|
public HashName ContentText { get; set; } = new();
|
|
|
|
public override int GetId()
|
|
{
|
|
return DisplayID;
|
|
}
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.RogueDialogueDynamicDisplayData.Add(DisplayID, this);
|
|
}
|
|
} |