2016-03-30 20:07:55 +00:00
|
|
|
#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;
|
2016-06-18 14:43:39 +00:00
|
|
|
@property (strong) IBOutlet NSWindow *mainWindow;
|
2016-03-30 20:07:55 +00:00
|
|
|
|
|
|
|
|
|
|
|
@end
|
|
|
|
|