NLDClient-yudde/ProjectNLD/Assets/ThirdParty/Behavior Designer/Runtime/Variables/SharedBool.cs

8 lines
243 B
C#
Raw Normal View History

2023-08-22 19:08:45 +08:00
namespace BehaviorDesigner.Runtime
{
[System.Serializable]
public class SharedBool : SharedVariable<bool>
{
public static implicit operator SharedBool(bool value) { return new SharedBool { mValue = value }; }
}
}