19 lines
327 B
Objective-C
19 lines
327 B
Objective-C
//
|
|
// AppDelegate.h
|
|
// RetroArch
|
|
//
|
|
// Copyright (c) 2013 RetroArch. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@class ViewController;
|
|
|
|
@interface AppDelegate : UIResponder <UIApplicationDelegate>
|
|
|
|
@property (strong, nonatomic) UIWindow *window;
|
|
|
|
@property (strong, nonatomic) UIViewController *viewController;
|
|
|
|
@end
|