Files

11 lines
261 B
C#
Raw Permalink Normal View History

2024-05-13 01:28:33 +08:00
#if UNITY_EDITOR
namespace GSpawn
{
public interface ITreeView
{
int numSelectedItems { get; }
int dragAndDropInitiatorId { get; }
System.Object dragAndDropData { get; }
}
}
#endif