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

8 lines
246 B
C#
Raw Normal View History

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