Files
atom/Atom/Classes/AtomApp.h
Corey Johnson 003effe5fd Kind of starting from scratch.
Recreated the project as an xcode 4 project.
Key Bindings are working and reloading.
Got rid of everything that wasn't being used right now.
2011-10-26 11:12:18 -07:00

13 lines
268 B
Objective-C

#import <Cocoa/Cocoa.h>
@class AtomController;
@interface AtomApp : NSApplication <NSApplicationDelegate>
@property (nonatomic, retain) NSMutableArray *controllers;
- (AtomController *)createController;
- (void)removeController:(AtomController *)controller;
@end