mirror of
https://github.com/somegeekintn/SimDirs.git
synced 2026-06-29 05:29:30 +00:00
30 lines
530 B
Objective-C
30 lines
530 B
Objective-C
//
|
|
// AppDelegate.m
|
|
// SimDirs
|
|
//
|
|
// Created by Casey Fleser on 9/10/14.
|
|
// Copyright (c) 2014 Quiet Spark. All rights reserved.
|
|
//
|
|
|
|
#import "AppDelegate.h"
|
|
#import "QSSimDeviceInfo.h"
|
|
#import "QSSimViewController.h"
|
|
|
|
@interface AppDelegate ()
|
|
|
|
@property (nonatomic, weak) IBOutlet NSWindow *window;
|
|
|
|
@end
|
|
|
|
@implementation AppDelegate
|
|
|
|
- (void) applicationDidFinishLaunching: (NSNotification *) inNotification
|
|
{
|
|
}
|
|
|
|
-(BOOL) applicationShouldTerminateAfterLastWindowClosed: (NSApplication *) inSender
|
|
{
|
|
return YES;
|
|
}
|
|
|
|
@end
|