mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-07-11 01:25:07 +02:00
18 lines
456 B
Objective-C
18 lines
456 B
Objective-C
// ViewController.h boilerplate
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import <GLKit/GLKit.h>
|
|
#import <GameController/GameController.h>
|
|
|
|
#import "iCade/iCadeReaderView.h"
|
|
#import "LocationHelper.h"
|
|
|
|
#import "ViewControllerCommon.h"
|
|
|
|
@interface PPSSPPViewControllerGL : PPSSPPBaseViewController<GLKViewDelegate, iCadeEventDelegate>
|
|
|
|
// Public-ish control similar to GLKViewController
|
|
@property (nonatomic, assign) NSInteger preferredFramesPerSecond; // default 60
|
|
|
|
@end
|