mirror of https://github.com/axmolengine/axmol.git
18 lines
397 B
C++
18 lines
397 B
C++
#ifndef _MENUTESTLAYERLOADER_H_
|
|
#define _MENUTESTLAYERLOADER_H_
|
|
|
|
#include "MenuTestLayer.h"
|
|
|
|
/* Forward declaration. */
|
|
class CCBReader;
|
|
|
|
class MenuTestLayerLoader : public cocos2d::extension::LayerLoader {
|
|
public:
|
|
CCB_STATIC_NEW_AUTORELEASE_OBJECT_METHOD(MenuTestLayerLoader, loader);
|
|
|
|
protected:
|
|
CCB_VIRTUAL_NEW_AUTORELEASE_CREATECCNODE_METHOD(MenuTestLayer);
|
|
};
|
|
|
|
#endif
|