6c4cd265e3
http://codereview.appspot.com/4576059/ git-svn-id: http://skia.googlecode.com/svn/trunk@1614 2bbb7eff-a529-9590-31e7-b0007b416f81
11 lines
252 B
Plaintext
11 lines
252 B
Plaintext
#import "SimpleCocoaAppDelegate.h"
|
|
|
|
@implementation SimpleCocoaAppDelegate
|
|
@synthesize window;
|
|
|
|
-(void) applicationDidFinishLaunching:(NSNotification *)aNotification {
|
|
//Load specified skia views after launching
|
|
[window installSkViews];
|
|
}
|
|
@end
|