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