Singularity/Library/PackageCache/com.unity.2d.path@5.0.2/Editor/Selection/ISelection.cs

17 lines
389 B
C#
Raw Normal View History

2024-05-06 14:45:45 -04:00
using System.Collections.Generic;
namespace UnityEditor.U2D.Path
{
public interface ISelection<T>
{
int Count { get; }
T activeElement { get; set; }
T[] elements { get; set; }
void Clear();
void BeginSelection();
void EndSelection(bool select);
bool Select(T element, bool select);
bool Contains(T element);
}
}