2012-09-17 18:49:05 +08:00
|
|
|
#ifndef _ANIMATIONSTESTLAYERLOADER_H_
|
|
|
|
#define _ANIMATIONSTESTLAYERLOADER_H_
|
|
|
|
|
|
|
|
#include "AnimationsTestLayer.h"
|
|
|
|
|
|
|
|
/* Forward declaration. */
|
|
|
|
class CCBReader;
|
|
|
|
|
2013-06-20 14:17:10 +08:00
|
|
|
class AnimationsTestLayerLoader : public cocos2d::extension::LayerLoader {
|
2012-09-17 18:49:05 +08:00
|
|
|
public:
|
|
|
|
CCB_STATIC_NEW_AUTORELEASE_OBJECT_METHOD(AnimationsTestLayerLoader, loader);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
CCB_VIRTUAL_NEW_AUTORELEASE_CREATECCNODE_METHOD(AnimationsTestLayer);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|