10 lines
212 B
Objective-C
10 lines
212 B
Objective-C
#import <Cocoa/Cocoa.h>
|
|
#import <SpriteKit/SpriteKit.h>
|
|
|
|
@interface AppDelegate : NSObject <NSApplicationDelegate>
|
|
|
|
@property (assign) IBOutlet NSWindow *window;
|
|
@property (assign) IBOutlet SKView *skView;
|
|
|
|
@end
|