mirror of https://github.com/axmolengine/axmol.git
18 lines
405 B
C
18 lines
405 B
C
|
#ifndef _LABELTESTLAYERLOADER_H_
|
||
|
#define _LABELTESTLAYERLOADER_H_
|
||
|
|
||
|
#include "LabelTestLayer.h"
|
||
|
|
||
|
/* Forward declaration. */
|
||
|
class CCBReader;
|
||
|
|
||
|
class LabelTestLayerLoader : public cocos2d::extension::CCLayerLoader {
|
||
|
public:
|
||
|
CCB_STATIC_NEW_AUTORELEASE_OBJECT_METHOD(LabelTestLayerLoader, loader);
|
||
|
|
||
|
protected:
|
||
|
CCB_VIRTUAL_NEW_AUTORELEASE_CREATECCNODE_METHOD(LabelTestLayer);
|
||
|
};
|
||
|
|
||
|
#endif
|