17 lines
280 B
Objective-C
Executable file
17 lines
280 B
Objective-C
Executable file
//
|
|
// AppDelegate.h
|
|
// FlashBack
|
|
//
|
|
// Created by Micah Gomez on 3/27/19.
|
|
// Copyright © 2019 Micah Gomez. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface AppDelegate : UIResponder <UIApplicationDelegate>
|
|
|
|
@property (strong, nonatomic) UIWindow *window;
|
|
|
|
|
|
@end
|
|
|