forked from shadowfacts/Tusker
14 lines
227 B
Swift
14 lines
227 B
Swift
//
|
|
// SelectableTableViewCell.swift
|
|
// Tusker
|
|
//
|
|
// Created by Shadowfacts on 12/14/19.
|
|
// Copyright © 2019 Shadowfacts. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
protocol SelectableTableViewCell {
|
|
func didSelectCell()
|
|
}
|