Initial Commit

This commit is contained in:
Matt Coneybeare
2014-09-15 15:30:06 -04:00
parent 2146b86777
commit bf92458155
45 changed files with 5905 additions and 0 deletions

26
Example/AppDelegate.m Normal file
View File

@@ -0,0 +1,26 @@
//
// 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