Files
CortexCore a379dc5cd3 1
2024-05-13 01:28:33 +08:00

19 lines
752 B
C#

#if UNITY_EDITOR
namespace GSpawn
{
public interface IListView
{
int numItems { get; }
int numSelectedItems { get; }
int dragAndDropInitiatorId { get; }
System.Object dragAndDropData { get; }
bool canDragAndDrop { get; set; }
bool canRenameItems { get; set; }
bool canMultiSelect { get; set; }
bool canDelete { get; set; }
bool canDuplicate { get; set; }
bool canCopyPaste { get; set; }
bool canCutPaste { get; set; }
}
}
#endif