mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 13:30:02 +00:00
17 lines
374 B
Objective-C
17 lines
374 B
Objective-C
// ViewController.h boilerplate
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import <GLKit/GLKit.h>
|
|
#if __IPHONE_OS_VERSION_MAX_ALLOWED > __IPHONE_6_1
|
|
#import <GameController/GameController.h>
|
|
#endif
|
|
#import "iCade/iCadeReaderView.h"
|
|
|
|
@interface ViewController : GLKViewController <iCadeEventDelegate>
|
|
|
|
- (void)shutdown;
|
|
|
|
@end
|
|
|
|
extern __unsafe_unretained ViewController* sharedViewController;
|