2012-09-17 18:49:05 +08:00
|
|
|
#ifndef _ANIMATIONSTESTLAYERLOADER_H_
|
|
|
|
#define _ANIMATIONSTESTLAYERLOADER_H_
|
|
|
|
|
|
|
|
#include "AnimationsTestLayer.h"
|
|
|
|
|
|
|
|
/* Forward declaration. */
|
|
|
|
class CCBReader;
|
|
|
|
|
2013-10-15 18:00:03 +08:00
|
|
|
class AnimationsTestLayerLoader : public cocosbuilder::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
|