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.

ISelectableItem.cs 553B

1234567891011121314151617181920
  1. using System;
  2. namespace UnityEditor.TestTools.TestRunner.GUI.Controls
  3. {
  4. /// <summary>
  5. /// Defines a content element which can be used with the <see cref="GenericItemContentProvider{T}" /> content provider.
  6. /// </summary>
  7. internal interface ISelectableItem<out T>
  8. {
  9. /// <summary>
  10. /// The value represented by this item.
  11. /// </summary>
  12. T Value { get; }
  13. /// <summary>
  14. /// The name to be used when displaying this item.
  15. /// </summary>
  16. string DisplayName { get; }
  17. }
  18. }