8 lines
246 B
C#
Raw Normal View History

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