* Top Screen Only = Shows just the top screen on TV * Layout Horizontally = Places screens side-by-side on TV (instead of stacked vertically)
24 lines
405 B
Swift
24 lines
405 B
Swift
//
|
|
// DSAirPlay.swift
|
|
// Delta
|
|
//
|
|
// Created by Riley Testut on 4/26/23.
|
|
// Copyright © 2023 Riley Testut. All rights reserved.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
import DeltaFeatures
|
|
import DeltaCore
|
|
|
|
extension TouchControllerSkin.LayoutAxis: OptionValue {}
|
|
|
|
struct DSAirPlayOptions
|
|
{
|
|
@Option
|
|
var topScreenOnly: Bool = true
|
|
|
|
@Option
|
|
var layoutAxis: TouchControllerSkin.LayoutAxis = .vertical
|
|
}
|