8 lines
236 B
C#
Raw Normal View History

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