mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-12 13:04:33 +01:00
20 lines
424 B
C#
20 lines
424 B
C#
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);
|
|
}
|
|
} |