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