mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
20 lines
476 B
C#
20 lines
476 B
C#
namespace EggLink.DanhengServer.Data.Excel;
|
|
|
|
[ResourceEntity("PlayerLevelConfig.json")]
|
|
public class PlayerLevelConfigExcel : ExcelResource
|
|
{
|
|
public int Level { get; set; }
|
|
public int PlayerExp { get; set; }
|
|
public int StaminaLimit { get; set; }
|
|
public int LevelRewardID { get; set; }
|
|
|
|
public override int GetId()
|
|
{
|
|
return Level;
|
|
}
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.PlayerLevelConfigData.Add(Level, this);
|
|
}
|
|
} |