2012-06-14 05:19:13 +08:00
|
|
|
#ifndef _BUTTONTESTLAYERLOADER_H_
|
|
|
|
#define _BUTTONTESTLAYERLOADER_H_
|
|
|
|
|
|
|
|
#include "ButtonTestLayer.h"
|
|
|
|
|
|
|
|
/* Forward declaration. */
|
|
|
|
class CCBReader;
|
|
|
|
|
2013-06-20 14:17:10 +08:00
|
|
|
class ButtonTestLayerLoader : public cocos2d::extension::LayerLoader {
|
2012-06-14 05:19:13 +08:00
|
|
|
public:
|
2012-06-15 05:23:53 +08:00
|
|
|
CCB_STATIC_NEW_AUTORELEASE_OBJECT_METHOD(ButtonTestLayerLoader, loader);
|
2012-06-14 05:19:13 +08:00
|
|
|
|
|
|
|
protected:
|
2012-06-15 05:23:53 +08:00
|
|
|
CCB_VIRTUAL_NEW_AUTORELEASE_CREATECCNODE_METHOD(ButtonTestLayer);
|
2012-06-14 05:19:13 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|