summaryrefslogtreecommitdiff
path: root/Client/Assets/Behavior Designer/Runtime/Variables/SharedBool.cs
blob: ec17b0d54c8268a9e831815ab6513a7a9411bf49 (plain)
1
2
3
4
5
6
7
8
namespace BehaviorDesigner.Runtime
{
    [System.Serializable]
    public class SharedBool : SharedVariable<bool>
    {
        public static implicit operator SharedBool(bool value) { return new SharedBool { mValue = value }; }
    }
}