PackageState.cs 155 B

123456789
  1. namespace UnityEditor.PackageManager.UI
  2. {
  3. internal enum PackageState {
  4. UpToDate,
  5. Outdated,
  6. InProgress,
  7. Error
  8. }
  9. }