mirror of
https://github.com/mauiaaron/apple2.git
synced 2024-11-18 20:07:55 +00:00
18 lines
288 B
Objective-C
18 lines
288 B
Objective-C
//
|
|
// AppDelegate.h
|
|
// Apple2etvOS
|
|
//
|
|
// Created by Jerome Vernet on 01/01/2016.
|
|
// Copyright © 2016 deadc0de.org. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface AppDelegate : UIResponder <UIApplicationDelegate>
|
|
|
|
@property (strong, nonatomic) UIWindow *window;
|
|
|
|
|
|
@end
|
|
|