JinChanChan/Assets/Scripts/Game/Config/BuffConfigObject.cs

10 lines
213 B
C#

using Sirenix.OdinInspector;
using UnityEngine;
namespace Game
{
public class BuffConfigObject : ScriptableObject
{
[LabelText("基本信息")] public BuffConfig config = new BuffConfig();
}
}