Files
UltimateFishing/Assets/Scripts/Assembly-CSharp/BehaviorDesigner/Runtime/SharedBool.cs
2026-02-21 16:45:37 +08:00

16 lines
286 B
C#

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