No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

PurchasingServiceToggleEvent.cs 825B

12345678910111213141516171819202122232425
  1. using System;
  2. namespace UnityEditor.Purchasing
  3. {
  4. /// <summary>
  5. /// This is an internal API.
  6. /// We recommend that you do not use it as it will be removed in a future release.
  7. /// </summary>
  8. [Obsolete("Internal API, it will be removed soon.")]
  9. public enum PurchasingServiceToggleEvent
  10. {
  11. /// <summary>
  12. /// This is an internal API.
  13. /// We recommend that you do not use it as it will be removed in a future release.
  14. /// </summary>
  15. [Obsolete("Internal API, it will be removed soon.")]
  16. Disabled,
  17. /// <summary>
  18. /// This is an internal API.
  19. /// We recommend that you do not use it as it will be removed in a future release.
  20. /// </summary>
  21. [Obsolete("Internal API, it will be removed soon.")]
  22. Enabled
  23. }
  24. }