blob: 9e44ef31e0d7af0a58ea92a343fbc315c8ad25ba (
plain)
1
2
3
4
5
6
7
8
9
10
|
using UnityEngine;
namespace BehaviorDesigner.Runtime
{
[System.Serializable]
public class SharedGameObject : SharedVariable<GameObject>
{
public static implicit operator SharedGameObject(GameObject value) { return new SharedGameObject { mValue = value }; }
}
}
|