SharedBool.cs 236 B

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