mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-12 21:04:41 +01:00
17 lines
341 B
C#
17 lines
341 B
C#
namespace KianaBH.Data.Excel;
|
|
|
|
[ResourceEntity("RecommendPanel.json")]
|
|
public class RecommendPanelExcel : ExcelResource
|
|
{
|
|
public uint PanelId { get; set; }
|
|
|
|
public override int GetId()
|
|
{
|
|
return (int)PanelId;
|
|
}
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.RecommendPanelData.Add(GetId(), this);
|
|
}
|
|
} |