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