Files
BITFALL/Assets/Plugins/GSpawn - Level Designer/Scripts/UI/ListView/IListView.cs
2024-08-11 16:16:31 +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