14 lines
314 B
Swift
14 lines
314 B
Swift
//
|
|
// StatusBarTappableViewController.swift
|
|
// Tusker
|
|
//
|
|
// Created by Shadowfacts on 11/1/22.
|
|
// Copyright © 2022 Shadowfacts. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
protocol StatusBarTappableViewController: UIViewController {
|
|
func handleStatusBarTapped(xPosition: CGFloat) -> StatusBarTapActionResult
|
|
}
|