mirror of https://github.com/axmolengine/axmol.git
20 lines
331 B
C++
20 lines
331 B
C++
#ifndef _CURRENT_LANGUAGE_TEST_H_
|
|
#define _CURRENT_LANGUAGE_TEST_H_
|
|
|
|
#include "cocos2d.h"
|
|
#include "../testBasic.h"
|
|
|
|
class CurrentLanguageTest : public Layer
|
|
{
|
|
public:
|
|
CurrentLanguageTest();
|
|
};
|
|
|
|
class CurrentLanguageTestScene : public TestScene
|
|
{
|
|
public:
|
|
virtual void runThisTest();
|
|
};
|
|
|
|
#endif // _CURRENT_LANGUAGE_TEST_H_
|