ISelectableElement.cs 178 B

123456789101112
  1. namespace FluxEditor
  2. {
  3. public interface ISelectableElement
  4. {
  5. void OnSelect();
  6. void OnDeselect();
  7. bool IsSelected { get; }
  8. UnityEngine.Rect Rect { get; set; }
  9. }
  10. }