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