mirror of https://github.com/axmolengine/axmol.git
24 lines
426 B
C++
24 lines
426 B
C++
|
|
|
|
#ifndef __TestCpp__UIRichTextTest__
|
|
#define __TestCpp__UIRichTextTest__
|
|
|
|
#include "../UIScene.h"
|
|
|
|
class UIRichTextTest : public UIScene
|
|
{
|
|
public:
|
|
UIRichTextTest();
|
|
~UIRichTextTest();
|
|
bool init();
|
|
void touchEvent(Ref *pSender, Widget::TouchEventType type);
|
|
|
|
protected:
|
|
UI_SCENE_CREATE_FUNC(UIRichTextTest)
|
|
|
|
protected:
|
|
RichText* _richText;
|
|
};
|
|
|
|
#endif /* defined(__TestCpp__UIRichTextTest__) */
|