mirror of
https://github.com/mauiaaron/apple2.git
synced 2024-12-27 06:29:19 +00:00
e527e40a6a
* Eh, not sure what bennies going with XCTest offers, use our existing stuff * Also appears that XCTest does some real whacky dloading jazz that doesn't play well with our hand-rolled assembly
16 lines
278 B
Objective-C
16 lines
278 B
Objective-C
//
|
|
// AppDelegate.h
|
|
// Apple2Mac
|
|
//
|
|
// Created by Aaron Culliney on 6/21/14.
|
|
// Copyright (c) 2014 deadc0de.org. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface AppDelegate : NSObject <NSApplicationDelegate>
|
|
|
|
@property (assign) IBOutlet NSWindow *window;
|
|
|
|
@end
|