12 lines
318 B
Objective-C
12 lines
318 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> __attribute__((weak_import))
|
|
#endif
|
|
#import "iCade/iCadeReaderView.h"
|
|
|
|
@interface ViewController : GLKViewController <iCadeEventDelegate>
|
|
|
|
@end
|