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