18 lines
290 B
Objective-C
18 lines
290 B
Objective-C
//
|
|
// AppDelegate.h
|
|
// YapDatabaseTesting
|
|
//
|
|
// Created by Robbie Hanson on 7/21/16.
|
|
// Copyright © 2016 Deusty LLC. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface AppDelegate : UIResponder <UIApplicationDelegate>
|
|
|
|
@property (strong, nonatomic) UIWindow *window;
|
|
|
|
|
|
@end
|
|
|