2012-06-15 09:16:54 +08:00
|
|
|
#ifndef _SPRITETESTLAYERLOADER_H_
|
|
|
|
#define _SPRITETESTLAYERLOADER_H_
|
|
|
|
|
|
|
|
#include "SpriteTestLayer.h"
|
|
|
|
|
|
|
|
/* Forward declaration. */
|
|
|
|
class CCBReader;
|
|
|
|
|
2013-06-20 14:17:10 +08:00
|
|
|
class SpriteTestLayerLoader : public cocos2d::extension::LayerLoader {
|
2012-06-15 09:16:54 +08:00
|
|
|
public:
|
|
|
|
CCB_STATIC_NEW_AUTORELEASE_OBJECT_METHOD(SpriteTestLayerLoader, loader);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
CCB_VIRTUAL_NEW_AUTORELEASE_CREATECCNODE_METHOD(SpriteTestLayer);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|