mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 21:57:57 +03:00
20 lines
614 B
Objective-C
20 lines
614 B
Objective-C
#import <UIKit/UIKit.h>
|
|
#import <GameController/GameController.h>
|
|
#import "iCade-iOS/iCadeReaderView.h"
|
|
#import "VirtualPadView.h"
|
|
|
|
@interface EmulatorViewController : UIViewController <iCadeEventDelegate>
|
|
|
|
@property (nonatomic) iCadeReaderView* iCadeReader;
|
|
@property (nonatomic) GCController *gController __attribute__((weak_import));
|
|
@property (nonatomic, strong) id connectObserver;
|
|
@property (nonatomic, strong) id disconnectObserver;
|
|
|
|
@property VirtualPadView* virtualPadView;
|
|
@property NSString* imagePath;
|
|
|
|
@property UILabel* fpsCounterLabel;
|
|
@property uint32 frames;
|
|
@property uint32 drawCallCount;
|
|
|
|
@end
|