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