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

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