Newer
Older
Import / research / 3d-experiments / Platform / AppDelegate.m
@John John on 29 Dec 2020 524 bytes bulk import from macbookpro checkouts
//
//  AppDelegate.m
//  Platform
//
//  Created by John Ryland on 4/10/17.
//  Copyright © 2017 John Ryland. 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