8 lines
246 B (Stored with Git LFS)
C#
8 lines
246 B (Stored with Git LFS)
C#
namespace BehaviorDesigner.Runtime
|
|
{
|
|
[System.Serializable]
|
|
public class SharedString : SharedVariable<string>
|
|
{
|
|
public static implicit operator SharedString(string value) { return new SharedString { mValue = value }; }
|
|
}
|
|
} |