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