CapersProject/Assets/Behavior Designer/Runtime/Variables/SharedString.cs
2024-06-04 03:26:03 +09:00

8 lines
246 B
C#

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