mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 05:19:56 +00:00
17 lines
444 B
Objective-C
17 lines
444 B
Objective-C
// ViewController.h boilerplate
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import <GLKit/GLKit.h>
|
|
#import <GameController/GameController.h>
|
|
|
|
#import "iCade/iCadeReaderView.h"
|
|
#import "CameraHelper.h"
|
|
#import "LocationHelper.h"
|
|
|
|
#include "ViewControllerCommon.h"
|
|
|
|
@interface PPSSPPViewControllerGL : GLKViewController <
|
|
iCadeEventDelegate, LocationHandlerDelegate, CameraFrameDelegate,
|
|
UIGestureRecognizerDelegate, UIKeyInput, PPSSPPViewController>
|
|
@end
|