mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
24 lines
607 B
Objective-C
24 lines
607 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"
|
|
#import "CameraHelper.h"
|
|
#import "LocationHelper.h"
|
|
|
|
@interface ViewController : GLKViewController <iCadeEventDelegate,
|
|
LocationHandlerDelegate, CameraFrameDelegate>
|
|
|
|
- (void)shutdown;
|
|
|
|
@end
|
|
|
|
extern __unsafe_unretained ViewController* sharedViewController;
|
|
void setCameraSize(int width, int height);
|
|
void startVideo();
|
|
void stopVideo();
|
|
void startLocation();
|
|
void stopLocation();
|