mirror of
https://github.com/libretro/Play-.git
synced 2025-02-23 21:22:55 +00:00
19 lines
387 B
Objective-C
19 lines
387 B
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
@interface SettingsViewController : UITableViewController
|
|
{
|
|
IBOutlet UISwitch* showFpsSwitch;
|
|
IBOutlet UISwitch* showVirtualPadSwitch;
|
|
|
|
IBOutlet UILabel* resolutionFactor;
|
|
IBOutlet UISwitch* forceBilinearFiltering;
|
|
|
|
IBOutlet UISwitch* enableAudioOutput;
|
|
|
|
IBOutlet UILabel* versionInfoLabel;
|
|
}
|
|
|
|
- (IBAction)returnToSettings:(UIStoryboardSegue*)segue;
|
|
|
|
@end
|