13 lines
367 B
C#
13 lines
367 B
C#
using Game;
|
|
using Sirenix.OdinInspector;
|
|
|
|
namespace Game
|
|
{
|
|
[System.Serializable]
|
|
public class HeroConfig
|
|
{
|
|
[LabelText("基本属性")] public BasicStats BasicStats = new BasicStats();
|
|
[LabelText("技能")] public Ability Ability = new Ability();
|
|
[LabelText("职业/羁绊")] public Profession Profession = new Profession();
|
|
}
|
|
} |