2014-03-06 03:26:47 +00:00
|
|
|
//
|
|
|
|
// EmulatorViewController.h
|
|
|
|
// emulator
|
|
|
|
//
|
|
|
|
// Created by Karen Tsai (angelXwind) on 2014/3/5.
|
|
|
|
// Copyright (c) 2014 Karen Tsai (angelXwind). All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import <GLKit/GLKit.h>
|
2015-08-07 20:12:17 +00:00
|
|
|
#import <GameController/GameController.h>
|
|
|
|
#import "iCadeReaderView.h"
|
2014-03-06 03:26:47 +00:00
|
|
|
|
2015-08-07 20:12:17 +00:00
|
|
|
@interface ViewController : GLKViewController <iCadeEventDelegate>
|
|
|
|
|
|
|
|
@property (nonatomic) iCadeReaderView* iCadeReader;
|
|
|
|
@property (nonatomic) GCController *gController __attribute__((weak_import));
|
2014-03-06 03:26:47 +00:00
|
|
|
|
|
|
|
@end
|