Files
2024-12-07 20:55:50 +01:00

13 lines
223 B
C#

using System;
namespace UnityEditor.Timeline
{
interface ISelectable : ILayerable
{
void Select();
bool IsSelected();
void Deselect();
bool CanSelect(UnityEngine.Event evt);
}
}