Files
Continentis/Assets/OtherPlugins/NaughtyAttributes/Scripts/Test/_TestScriptableObjectA.cs
SoulliesOfficial d09b58fd80 架构大更
2026-03-20 11:56:50 -04:00

11 lines
342 B
C#

using System.Collections.Generic;
using UnityEngine;
namespace NaughtyAttributes.Test
{
//[CreateAssetMenu(fileName = "TestScriptableObjectA", menuName = "NaughtyAttributes/TestScriptableObjectA")]
public class _TestScriptableObjectA : ScriptableObject
{
[Expandable] public List<_TestScriptableObjectB> listB;
}
}