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); } }