nevermore-kang's picture
Upload folder using huggingface_hub
18a519f verified
Raw
History Blame
223 Bytes
using System;
namespace UnityEditor.Timeline
{
interface ISelectable : ILayerable
{
void Select();
bool IsSelected();
void Deselect();
bool CanSelect(UnityEngine.Event evt);
}
}