Files
DanhengServer-OpenSource/Common/Data/Excel/RogueHandBookEventExcel.cs
Somebody 9fa2f46fdd Update to 2.3.0
- Fix basic game play
- Fix ChessRogue side function ( only basic )
2024-07-05 21:49:18 +08:00

29 lines
712 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EggLink.DanhengServer.Data.Excel
{
[ResourceEntity("RogueHandBookEvent.json")]
public class RogueHandBookEventExcel : ExcelResource
{
public int EventHandbookID { get; set; }
public HashName EventTitle { get; set; } = new();
public int EventReward { get; set; }
public List<int> EventTypeList { get; set; } = [];
public override int GetId()
{
return EventHandbookID;
}
public override void Loaded()
{
GameData.RogueHandBookEventData.Add(GetId(), this);
}
}
}