mirror of
https://github.com/mauiaaron/apple2.git
synced 2024-12-26 15:29:19 +00:00
23 lines
417 B
Objective-C
23 lines
417 B
Objective-C
/*
|
|
* Apple // emulator for *ix
|
|
*
|
|
* This software package is subject to the GNU General Public License
|
|
* version 3 or later (your choice) as published by the Free Software
|
|
* Foundation.
|
|
*
|
|
* Copyright 2015 Aaron Culliney
|
|
*
|
|
*/
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@class EAGLView;
|
|
@class MainViewController;
|
|
|
|
@interface AppDelegate : NSObject<UIApplicationDelegate>
|
|
|
|
@property (nonatomic, retain) UIWindow *window;
|
|
|
|
@end
|
|
|