8 lines
246 B
C#
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 }; }
|
||
|
}
|
||
|
}
|