blob: 6b706b6aaf0c2d49c1742ad8cc8279b9d97369fe (
plain)
1
2
3
4
5
6
7
8
9
10
|
#import "FileReaderAppDelegate.h"
@implementation FileReaderAppDelegate
@synthesize window;
-(void) applicationDidFinishLaunching:(NSNotification *)aNotification {
//Load specified skia views after launching
[window installSkViews];
}
@end
|