mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-13 21:34:43 +01:00
Init enter game
This commit is contained in:
16
Common/Data/Excel/EntryThemeItemDataExcel.cs
Normal file
16
Common/Data/Excel/EntryThemeItemDataExcel.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user