forked from shadowfacts/Tusker
14 lines
261 B
Swift
14 lines
261 B
Swift
//
|
|
// TabBarScrollableViewController.swift
|
|
// Tusker
|
|
//
|
|
// Created by Shadowfacts on 7/3/20.
|
|
// Copyright © 2020 Shadowfacts. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
protocol TabBarScrollableViewController: UIViewController {
|
|
func tabBarScrollToTop()
|
|
}
|