Gesture settings

This commit is contained in:
Bryce Hackel
2024-08-14 22:20:36 -07:00
parent 10882e5d61
commit e92ada8427
3 changed files with 79 additions and 4 deletions

View File

@@ -52,6 +52,14 @@
#define IS_ENABLED(k) [[NSUserDefaults standardUserDefaults] boolForKey:k]
#define APP_THEME_IDX [[NSUserDefaults standardUserDefaults] integerForKey:@"appTheme"]
// Enum for Player Gesture selected modes
typedef NS_ENUM(NSUInteger, GestureMode) {
GestureModeVolume,
GestureModeBrightness,
GestureModeSeek,
GestureModeInvalid
};
// YTSpeed
@interface YTVarispeedSwitchControllerOption : NSObject
- (id)initWithTitle:(id)title rate:(float)rate;