2020-06-24 20:40:45 +00:00
|
|
|
//
|
|
|
|
// TuskerRootViewController.swift
|
|
|
|
// Tusker
|
|
|
|
//
|
|
|
|
// Created by Shadowfacts on 6/24/20.
|
|
|
|
// Copyright © 2020 Shadowfacts. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import UIKit
|
|
|
|
|
|
|
|
protocol TuskerRootViewController: UIViewController {
|
|
|
|
func presentCompose()
|
|
|
|
func select(tab: MainTabBarViewController.Tab)
|
2020-10-27 02:13:48 +00:00
|
|
|
func getTabController(tab: MainTabBarViewController.Tab) -> UIViewController?
|
2021-05-24 23:07:47 +00:00
|
|
|
func performSearch(query: String)
|
2022-04-30 15:46:14 +00:00
|
|
|
func presentPreferences(completion: (() -> Void)?)
|
2020-06-24 20:40:45 +00:00
|
|
|
}
|