axmol/cocos2dx/extensions/CCBIReader/CCLayerGradientLoader.h

24 lines
739 B
C
Raw Normal View History

#ifndef _CCLAYERGRADIENT_LOADER_H_
#define _CCLAYERGRADIENT_LOADER_H_
#include "CCLayerLoader.h"
NS_CC_EXT_BEGIN
/* Forward declaration. */
class CCBReader;
class CCLayerGradientLoader : public CCLayerLoader {
protected:
2012-05-31 07:51:33 +08:00
virtual CCLayerGradient * createCCNode(CCNode *, CCBReader *);
2012-05-31 07:51:33 +08:00
virtual void onHandlePropTypeColor3(CCNode *, CCNode *, std::string, ccColor3B, CCBReader *);
virtual void onHandlePropTypeByte(CCNode *, CCNode *, std::string, unsigned char, CCBReader *);
virtual void onHandlePropTypePoint(CCNode *, CCNode *, std::string, CCPoint, CCBReader *);
virtual void onHandlePropTypeBlendFunc(CCNode *, CCNode *, std::string, ccBlendFunc, CCBReader *);
};
NS_CC_EXT_END
#endif