mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
19 lines
407 B
C#
19 lines
407 B
C#
namespace EggLink.DanhengServer.Data.Excel;
|
|
|
|
[ResourceEntity("MusicRhythmGroup.json")]
|
|
public class MusicRhythmGroupExcel : ExcelResource
|
|
{
|
|
public int ID { get; set; }
|
|
public int Index { get; set; }
|
|
public int Phase { get; set; }
|
|
|
|
public override int GetId()
|
|
{
|
|
return ID;
|
|
}
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.MusicRhythmGroupData.Add(ID, this);
|
|
}
|
|
} |