mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-29 06:07:56 +03:00
18 lines
387 B
Objective-C
18 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
|