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