Cocos2dUtilities
Utilities developed by HurleyProg for use with Cocos2d
 All Classes Functions Variables Properties Pages
CCFadableLayer.h
1 //
2 // CCFadableLayer.h
3 // Empous
4 //
5 // Created by Ryan Hurley on 5/28/13.
6 // Copyright (c) 2013 HurleyProg. All rights reserved.
7 //
8 
9 #import "CCLayer.h"
10 #import "cocos2d.h"
11 
16 @interface CCFadableLayer : CCLayer <CCRGBAProtocol>
17 
21 +(id)node;
22 
27 -(void) setColor:(ccColor3B)color;
28 
34 -(ccColor3B) color;
35 
39 -(GLubyte) opacity;
40 
44 -(void) setOpacity: (GLubyte) opacity;
45 
46 @end