ppsspp/ios/ViewController.h
2018-02-22 03:04:32 -08:00

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;