10 lines
286 B
C#
Raw Normal View History

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