CapersProject/Assets/Behavior Designer/Runtime/Variables/SharedBool.cs

8 lines
236 B
C#
Raw Normal View History

2024-06-03 18:26:03 +00:00
namespace BehaviorDesigner.Runtime
{
[System.Serializable]
public class SharedBool : SharedVariable<bool>
{
public static implicit operator SharedBool(bool value) { return new SharedBool { mValue = value }; }
}
}