13 lines
202 B
C#
13 lines
202 B
C#
|
using System;
|
||
|
|
||
|
namespace UnityEditor.Timeline
|
||
|
{
|
||
|
interface ISelectable : ILayerable
|
||
|
{
|
||
|
void Select();
|
||
|
bool IsSelected();
|
||
|
void Deselect();
|
||
|
bool CanSelect();
|
||
|
}
|
||
|
}
|