SharedString.cs 246 B

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