Play-/Source/ui_ios/EmulatorViewController.h

25 lines
673 B
C
Raw Normal View History

2015-07-22 02:48:26 -04:00
#import <UIKit/UIKit.h>
#import <GameController/GameController.h>
2017-03-04 15:16:00 -08:00
#import "iCadeReaderView.h"
2015-10-26 22:26:34 -04:00
#import "VirtualPadView.h"
2015-07-22 02:48:26 -04:00
@interface EmulatorViewController : UIViewController <iCadeEventDelegate>
2018-04-30 21:01:23 +01:00
+ (void)registerPreferences;
2018-04-30 21:01:23 +01:00
@property(nonatomic) iCadeReaderView* iCadeReader;
@property(nonatomic) GCController* gController __attribute__((weak_import));
@property(nonatomic, strong) id connectObserver;
@property(nonatomic, strong) id disconnectObserver;
2015-07-22 02:48:26 -04:00
2015-10-26 22:26:34 -04:00
@property VirtualPadView* virtualPadView;
2017-11-01 09:46:23 -04:00
@property NSString* bootablePath;
2015-07-22 02:48:26 -04:00
@property NSTimer* fpsCounterTimer;
2015-11-24 10:31:44 -05:00
@property UILabel* fpsCounterLabel;
#ifdef PROFILE
@property UILabel* profilerStatsLabel;
#endif
2015-11-24 10:31:44 -05:00
2015-07-22 02:48:26 -04:00
@end