summaryrefslogtreecommitdiff
path: root/Client/Assets/Behavior Designer/Runtime/Variables/SharedVector2.cs
blob: 379c4d55320335ee1cab243db85e45a53b1fe564 (plain)
1
2
3
4
5
6
7
8
9
10
using UnityEngine;

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