Files
DanhengServer-OpenSource/Common/Data/Excel/PerformanceDExcel.cs
Somebody a100f5d4c4 Fix bug
- The Sms will not be showed when the mission runs
2024-07-17 14:21:24 +08:00

31 lines
736 B
C#

using EggLink.DanhengServer.Data.Config;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EggLink.DanhengServer.Data.Excel
{
[ResourceEntity("PerformanceD.json")]
public class PerformanceDExcel : ExcelResource
{
public int PerformanceID { get; set; }
public string PerformancePath { get; set; } = "";
[JsonIgnore]
public LevelGraphConfigInfo? ActInfo { get; set; }
public override int GetId()
{
return PerformanceID;
}
public override void Loaded()
{
GameData.PerformanceDData.Add(PerformanceID, this);
}
}
}