mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-15 06:14:35 +01:00
Init enter game
This commit is contained in:
17
Common/Data/Excel/ActivityTowerExcel.cs
Normal file
17
Common/Data/Excel/ActivityTowerExcel.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
namespace KianaBH.Data.Excel;
|
||||
|
||||
[ResourceEntity("ActivityTower.json")]
|
||||
public class ActivityTowerExcel : ExcelResource
|
||||
{
|
||||
public uint ActivityID { get; set; }
|
||||
|
||||
public override int GetId()
|
||||
{
|
||||
return (int)ActivityID;
|
||||
}
|
||||
|
||||
public override void Loaded()
|
||||
{
|
||||
GameData.ActivityTowerData.Add(GetId(), this);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user