Files
Learning-UnityNGO/Assets/ASSETS/DEV/FREE/NaughtyAttributes/Scripts/Test/_TestScriptableObjectA.cs
T
2026-06-17 20:44:53 +03:00

12 lines
350 B
C#

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