mirror of
https://github.com/moonlight-stream/moonlight-ios.git
synced 2025-07-01 23:35:59 +00:00
22 lines
658 B
Objective-C
22 lines
658 B
Objective-C
//
|
|
// SettingsViewController.h
|
|
// Moonlight
|
|
//
|
|
// Created by Diego Waxemberg on 10/27/14.
|
|
// Copyright (c) 2014 Moonlight Stream. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "AppDelegate.h"
|
|
|
|
@interface SettingsViewController : UIViewController
|
|
@property (strong, nonatomic) IBOutlet UILabel *bitrateLabel;
|
|
@property (strong, nonatomic) IBOutlet UISlider *bitrateSlider;
|
|
@property (strong, nonatomic) IBOutlet UISegmentedControl *framerateSelector;
|
|
@property (strong, nonatomic) IBOutlet UISegmentedControl *resolutionSelector;
|
|
@property (strong, nonatomic) IBOutlet UISegmentedControl *onscreenControlSelector;
|
|
|
|
- (void) saveSettings;
|
|
|
|
@end
|