18 lines
537 B
Swift
18 lines
537 B
Swift
//
|
|
// TuskerRootViewController.swift
|
|
// Tusker
|
|
//
|
|
// Created by Shadowfacts on 6/24/20.
|
|
// Copyright © 2020 Shadowfacts. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
protocol TuskerRootViewController: UIViewController, StateRestorableViewController, StatusBarTappableViewController {
|
|
func presentCompose()
|
|
func select(tab: MainTabBarViewController.Tab)
|
|
func getTabController(tab: MainTabBarViewController.Tab) -> UIViewController?
|
|
func performSearch(query: String)
|
|
func presentPreferences(completion: (() -> Void)?)
|
|
}
|