Files
MRCS/Assets/Plugins/Behavior Designer/Runtime/Variables/SharedBool.cs
2025-10-31 12:25:48 +08:00

8 lines
236 B
C#

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