2012-06-14 05:19:13 +08:00
|
|
|
#ifndef _BUTTONTESTLAYERLOADER_H_
|
|
|
|
#define _BUTTONTESTLAYERLOADER_H_
|
|
|
|
|
2012-06-14 06:25:59 +08:00
|
|
|
#include "extensions/CCBReader/CCLayerLoader.h"
|
2012-06-14 05:19:13 +08:00
|
|
|
#include "ButtonTestLayer.h"
|
|
|
|
|
|
|
|
/* Forward declaration. */
|
|
|
|
class CCBReader;
|
|
|
|
|
|
|
|
class ButtonTestLayerLoader : public cocos2d::extension::CCLayerLoader {
|
|
|
|
public:
|
|
|
|
STATIC_NEW_AUTORELEASE_OBJECT_METHOD(ButtonTestLayerLoader, loader);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual ButtonTestLayer * createCCNode(cocos2d::CCNode *, cocos2d::extension::CCBReader *);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|