11 lines
261 B
C#
11 lines
261 B
C#
|
#if UNITY_EDITOR
|
|||
|
namespace GSpawn
|
|||
|
{
|
|||
|
public interface ITreeView
|
|||
|
{
|
|||
|
int numSelectedItems { get; }
|
|||
|
int dragAndDropInitiatorId { get; }
|
|||
|
System.Object dragAndDropData { get; }
|
|||
|
}
|
|||
|
}
|
|||
|
#endif
|