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