forked from shadowfacts/Tusker
15 lines
262 B
Swift
15 lines
262 B
Swift
|
//
|
||
|
// TabbedPageViewController.swift
|
||
|
// Tusker
|
||
|
//
|
||
|
// Created by Shadowfacts on 11/14/20.
|
||
|
// Copyright © 2020 Shadowfacts. All rights reserved.
|
||
|
//
|
||
|
|
||
|
import UIKit
|
||
|
|
||
|
@objc protocol TabbedPageViewController {
|
||
|
func selectNextPage()
|
||
|
func selectPrevPage()
|
||
|
}
|