using System.Collections.Generic; using UnityEngine; namespace Needle.Engine.ProjectBundle { /// /// Only used to display an editor list /// internal class NpmDefDependenciesWrapper : ScriptableObject { [NonReorderable] // because drop in 2022.1 is not raising change evt public List Dependencies = new List(); } }