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

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