Files
Armchair-UrbanApps/Example/AppDelegate.m
Matt Coneybeare bf92458155 Initial Commit
2014-09-15 15:30:06 -04:00

27 lines
531 B
Objective-C

//
// AppDelegate.m
// Mac Example
//
// Created by Matt Coneybeare on 9/15/14.
// Copyright (c) 2014 Armchair. All rights reserved.
//
#import "AppDelegate.h"
@interface AppDelegate ()
@property (weak) IBOutlet NSWindow *window;
@end
@implementation AppDelegate
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
// Insert code here to initialize your application
}
- (void)applicationWillTerminate:(NSNotification *)aNotification {
// Insert code here to tear down your application
}
@end