30 lines
825 B
Swift
30 lines
825 B
Swift
//
|
|
// ExperimentalFeatures.swift
|
|
// Delta
|
|
//
|
|
// Created by Riley Testut on 4/6/23.
|
|
// Copyright © 2023 Riley Testut. All rights reserved.
|
|
//
|
|
|
|
import DeltaFeatures
|
|
|
|
struct ExperimentalFeatures: FeatureContainer
|
|
{
|
|
static let shared = ExperimentalFeatures()
|
|
|
|
@Feature(name: "AirPlay Skins",
|
|
description: "Customize the appearance of games when AirPlaying to your TV.",
|
|
options: AirPlaySkinsOptions())
|
|
var airPlaySkins
|
|
|
|
@Feature(name: "Variable Fast Forward",
|
|
description: "Change the preferred Fast Foward speed per-system. You can also change it by long-pressing the Fast Forward button from the Pause Menu.",
|
|
options: VariableFastForwardOptions())
|
|
var variableFastForward
|
|
|
|
private init()
|
|
{
|
|
self.prepareFeatures()
|
|
}
|
|
}
|