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