skia2/experimental/SimpleCocoaApp/SimpleCocoaAppDelegate.mm
2011-06-16 14:46:26 +00:00

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