mirror of https://github.com/axmolengine/axmol.git
18 lines
403 B
C++
18 lines
403 B
C++
#ifndef _SPRITETESTLAYERLOADER_H_
|
|
#define _SPRITETESTLAYERLOADER_H_
|
|
|
|
#include "SpriteTestLayer.h"
|
|
|
|
/* Forward declaration. */
|
|
class CCBReader;
|
|
|
|
class SpriteTestLayerLoader : public cocosbuilder::LayerLoader {
|
|
public:
|
|
CCB_STATIC_NEW_AUTORELEASE_OBJECT_METHOD(SpriteTestLayerLoader, loader);
|
|
|
|
protected:
|
|
CCB_VIRTUAL_NEW_AUTORELEASE_CREATECCNODE_METHOD(SpriteTestLayer);
|
|
};
|
|
|
|
#endif
|