mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
31 lines
736 B
C#
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);
|
|
}
|
|
}
|
|
}
|