mirror of https://github.com/axmolengine/axmol.git
19 lines
313 B
C++
19 lines
313 B
C++
|
|
|
|
#ifndef __TestCpp__UITextAtlasTest__
|
|
#define __TestCpp__UITextAtlasTest__
|
|
|
|
#include "../UIScene.h"
|
|
|
|
DEFINE_TEST_SUITE(UITextAtlasTests);
|
|
|
|
class UITextAtlasTest : public UIScene
|
|
{
|
|
public:
|
|
CREATE_FUNC(UITextAtlasTest);
|
|
|
|
virtual bool init() override;
|
|
};
|
|
|
|
#endif /* defined(__TestCpp__UITextAtlasTest__) */
|