mirror of
https://github.com/moparisthebest/mailiverse
synced 2024-11-13 12:45:09 -05:00
20 lines
379 B
Objective-C
20 lines
379 B
Objective-C
//
|
|
// AppDelegate.h
|
|
// Mailiverse
|
|
//
|
|
// Created by Timothy Prepscius on 1/23/13.
|
|
// Copyright (c) 2013 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@class ViewController;
|
|
|
|
@interface AppDelegate : UIResponder <UIApplicationDelegate>
|
|
|
|
@property (strong, nonatomic) UIWindow *window;
|
|
|
|
@property (strong, nonatomic) ViewController *viewController;
|
|
|
|
@end
|