SameBoy/Cocoa/Document.h
2016-06-18 17:43:39 +03:00

14 lines
359 B
Objective-C

#import <Cocoa/Cocoa.h>
#include "GBView.h"
@interface Document : NSDocument <NSWindowDelegate>
@property (strong) IBOutlet GBView *view;
@property (strong) IBOutlet NSTextView *consoleOutput;
@property (strong) IBOutlet NSPanel *consoleWindow;
@property (strong) IBOutlet NSTextField *consoleInput;
@property (strong) IBOutlet NSWindow *mainWindow;
@end