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