OSDN Git Service

first commit
[eliscolors/main.git] / ElisAnimationLayerFactory.h
1 //
2 //  ElisAnimationLayerFactory.h
3 //  Elis Colors
4 //
5 //  Created by 柳 on 09/09/12.
6 //  Copyright 2009 __MyCompanyName__. All rights reserved.
7 //
8
9 #import <Cocoa/Cocoa.h>
10 #import "ElisBase.h"
11 #import "ElisCustomCALayer.h"
12
13 @interface ElisAnimationLayerFactory : NSObject {
14     CGImageRef mediaImage;
15     NSBundle *bundle;
16     CALayer* parentLayer;
17 }
18 - (CALayer*)createNewMovieLayer:(float)d name:(NSString*)name;
19 - (CALayer*)createKeyframeLevelLayer;
20 @end