using System; using System.Collections.Generic; using UnityEngine; namespace BehaviorDesigner.Runtime { [Serializable] public class SharedObjectList : SharedVariable> { public static implicit operator SharedObjectList(List value) { SharedObjectList sharedObjectList = new SharedObjectList(); sharedObjectList.mValue = value; return sharedObjectList; } } }