Sin descripción
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.

ISelectable.cs 223B

123456789101112
  1. using System;
  2. namespace UnityEditor.Timeline
  3. {
  4. interface ISelectable : ILayerable
  5. {
  6. void Select();
  7. bool IsSelected();
  8. void Deselect();
  9. bool CanSelect(UnityEngine.Event evt);
  10. }
  11. }