2012-06-19 04:59:45 +08:00
|
|
|
#ifndef _SCROLLVIEWTESTLAYER_H_
|
|
|
|
#define _SCROLLVIEWTESTLAYER_H_
|
|
|
|
|
|
|
|
#include "cocos2d.h"
|
2013-10-16 16:48:39 +08:00
|
|
|
#include "extensions/cocos-ext.h"
|
2012-06-19 04:59:45 +08:00
|
|
|
|
2013-06-20 14:17:10 +08:00
|
|
|
class ScrollViewTestLayer : public cocos2d::Layer {
|
2012-06-19 04:59:45 +08:00
|
|
|
public:
|
2012-06-20 11:48:31 +08:00
|
|
|
CCB_STATIC_NEW_AUTORELEASE_OBJECT_WITH_INIT_METHOD(ScrollViewTestLayer, create);
|
2012-06-19 04:59:45 +08:00
|
|
|
};
|
|
|
|
|
2014-06-19 19:45:49 +08:00
|
|
|
#endif
|