mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-14 05:44:34 +01:00
Init enter game
This commit is contained in:
20
Common/Data/Excel/GodWarEventExcel.cs
Normal file
20
Common/Data/Excel/GodWarEventExcel.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
namespace KianaBH.Data.Excel;
|
||||
|
||||
[ResourceEntity("GodWarEvent.json")]
|
||||
public class GodWarEventExcel : ExcelResource
|
||||
{
|
||||
public uint EventID { get; set; }
|
||||
public int EventType { get; set; }
|
||||
public List<uint> ParamsVar { get; set; } = [];
|
||||
|
||||
|
||||
public override int GetId()
|
||||
{
|
||||
return (int)EventID;
|
||||
}
|
||||
|
||||
public override void Loaded()
|
||||
{
|
||||
GameData.GodWarEventData.Add(GetId(), this);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user