mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 21:57:57 +03:00
16 lines
332 B
Objective-C
16 lines
332 B
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
@interface SettingsViewController : UITableViewController
|
|
{
|
|
IBOutlet UISwitch* showFpsSwitch;
|
|
IBOutlet UISwitch* showVirtualPadSwitch;
|
|
|
|
IBOutlet UISwitch* enableHighResMode;
|
|
IBOutlet UISwitch* forceBilinearFiltering;
|
|
|
|
IBOutlet UISwitch* enableAudioOutput;
|
|
|
|
IBOutlet UILabel* versionInfoLabel;
|
|
}
|
|
|
|
@end
|