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

8 lines
253 B
C#
Raw Normal View History

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