mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
18 lines
441 B
C#
18 lines
441 B
C#
namespace EggLink.DanhengServer.Data.Excel;
|
|
|
|
[ResourceEntity("GroupSystemUnlockData.json")]
|
|
public class GroupSystemUnlockDataExcel : ExcelResource
|
|
{
|
|
public int GroupSystemUnlockID { get; set; }
|
|
public int UnlockID { get; set; }
|
|
|
|
public override int GetId()
|
|
{
|
|
return GroupSystemUnlockID;
|
|
}
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.GroupSystemUnlockDataData[GroupSystemUnlockID] = this;
|
|
}
|
|
} |