mirror of https://github.com/axmolengine/axmol.git
19 lines
438 B
C++
19 lines
438 B
C++
#ifndef _TESTHEADERLAYERLOADER_H_
|
|
#define _TESTHEADERLAYERLOADER_H_
|
|
|
|
#include "CCLayerLoader.h"
|
|
#include "TestHeaderLayer.h"
|
|
|
|
/* Forward declaration. */
|
|
class CCBReader;
|
|
|
|
class TestHeaderLayerLoader : public cocos2d::extension::CCLayerLoader {
|
|
public:
|
|
CCB_STATIC_NEW_AUTORELEASE_OBJECT_METHOD(TestHeaderLayerLoader, loader);
|
|
|
|
protected:
|
|
CCB_VIRTUAL_NEW_AUTORELEASE_CREATECCNODE_METHOD(TestHeaderLayer);
|
|
};
|
|
|
|
#endif
|