BITFALL/Assets/GSpawn - Level Designer/Scripts/UI/ListView/IListView.cs

19 lines
752 B
C#
Raw Normal View History

2024-01-27 04:09:57 +08:00
#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