SquareDash/Library/PackageCache/com.unity.timeline@1.8.6/Editor/treeview/ItemGui/ISelectable.cs
kingjuulian06 0efb85038a Arbeit 2
2023-11-21 22:03:49 +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);
}
}