20 lines
380 B
C#
20 lines
380 B
C#
using GeometryTD.Definition;
|
|
|
|
namespace GeometryTD.UI
|
|
{
|
|
public interface IRepoDragItemView
|
|
{
|
|
long InstanceId { get; }
|
|
|
|
bool CanDrag { get; }
|
|
|
|
TowerCompSlotType ComponentSlotType { get; }
|
|
|
|
RepoItemClickActionType ClickActionType { get; }
|
|
|
|
RepoItemContext ComponentContext { get; }
|
|
|
|
void SetDropResult(bool assigned);
|
|
}
|
|
}
|