blob: 0381c09835190677141eeff252ae1bf6ab0b711e (
plain)
1
2
3
4
5
6
7
8
|
namespace BehaviorDesigner.Runtime
{
[System.Serializable]
public class SharedString : SharedVariable<string>
{
public static implicit operator SharedString(string value) { return new SharedString { mValue = value }; }
}
}
|