GBA001/Delta/Settings/Features/DSAirPlay.swift
Riley Testut 1137189b57 Adds Nintendo DS AirPlay settings to customize how games appear on TV
* Top Screen Only = Shows just the top screen on TV
* Layout Horizontally = Places screens side-by-side on TV (instead of stacked vertically)
2023-04-26 16:07:17 -05:00

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
}