13 lines
265 B
C++
13 lines
265 B
C++
#ifndef _LABELTESTLAYER_H_
|
|
#define _LABELTESTLAYER_H_
|
|
|
|
#include "cocos2d.h"
|
|
#include "extensions/cocos-ext.h"
|
|
|
|
class LabelTestLayer : public cocos2d::Layer {
|
|
public:
|
|
CCB_STATIC_NEW_AUTORELEASE_OBJECT_WITH_INIT_METHOD(LabelTestLayer, create);
|
|
};
|
|
|
|
#endif
|