Files
DanhengServer-OpenSource/Common/Data/Excel/PerformanceEExcel.cs
Somebody 72ddae8940 [BREAK CHANGE] Feature: Implement the basic task system
- Support for the 2.0&2.1 mission
- The story line is still not working
2024-07-16 14:15:07 +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("PerformanceE.json")]
public class PerformanceEExcel : 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.PerformanceEData.Add(PerformanceID, this);
}
}
}