untangle-puzzlegame/Library/PackageCache/com.unity.timeline@c58b4ee65782/Editor/treeview/ItemGui/ISelectable.cs
2025-04-17 17:33:08 -04: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);
}
}