Aucune description
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

ISelection.cs 389B

12345678910111213141516
  1. using System.Collections.Generic;
  2. namespace UnityEditor.U2D.Path
  3. {
  4. public interface ISelection<T>
  5. {
  6. int Count { get; }
  7. T activeElement { get; set; }
  8. T[] elements { get; set; }
  9. void Clear();
  10. void BeginSelection();
  11. void EndSelection(bool select);
  12. bool Select(T element, bool select);
  13. bool Contains(T element);
  14. }
  15. }