using System; using UnityEngine; namespace BehaviorDesigner.Runtime { [Serializable] public class SharedGameObject : SharedVariable { public static implicit operator SharedGameObject(GameObject value) { SharedGameObject sharedGameObject = new SharedGameObject(); sharedGameObject.mValue = value; return sharedGameObject; } } }