Tusker/Tusker/Screens/Utilities/DraggableTableViewCell.swift

14 lines
288 B
Swift

//
// DraggableTableViewCell.swift
// Tusker
//
// Created by Shadowfacts on 12/14/20.
// Copyright © 2020 Shadowfacts. All rights reserved.
//
import UIKit
protocol DraggableTableViewCell: UITableViewCell {
func dragItemsForBeginning(session: UIDragSession) -> [UIDragItem]
}