10 lines
204 B
C#
10 lines
204 B
C#
|
using Sirenix.OdinInspector;
|
||
|
using UnityEngine;
|
||
|
|
||
|
namespace Game
|
||
|
{
|
||
|
public class CharacterConfigObject : ScriptableObject
|
||
|
{
|
||
|
[LabelText("基本信息")] public CharacterConfig config;
|
||
|
}
|
||
|
}
|