GBA002/Delta/Settings/Features/Features.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

26 lines
454 B
Swift

//
// Features.swift
// Delta
//
// Created by Riley Testut on 4/21/23.
// Copyright © 2023 Riley Testut. All rights reserved.
//
import DeltaFeatures
extension Settings
{
struct Features: FeatureContainer
{
static let shared = Features()
@Feature(name: "DS AirPlay", options: DSAirPlayOptions())
var dsAirPlay
private init()
{
self.prepareFeatures()
}
}
}