mirror of
https://github.com/UrbanApps/Armchair.git
synced 2026-03-18 23:33:53 +01:00
32 lines
591 B
Objective-C
32 lines
591 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"
|
|
|
|
@import Armchair;
|
|
|
|
//#import "Armchair-Bridging-Header.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
|