mirror of https://github.com/axmolengine/axmol.git
26 lines
461 B
C
26 lines
461 B
C
|
#ifndef _TextureAtlasEncryption_TEST_H_
|
||
|
#define _TextureAtlasEncryption_TEST_H_
|
||
|
|
||
|
#include "cocos2d.h"
|
||
|
#include "../testBasic.h"
|
||
|
#include <string>
|
||
|
|
||
|
class TextureAtlasEncryptionDemo : public CCLayer
|
||
|
{
|
||
|
public:
|
||
|
virtual std::string title();
|
||
|
virtual std::string subtitle();
|
||
|
virtual void onEnter();
|
||
|
|
||
|
protected:
|
||
|
std::string m_strTitle;
|
||
|
};
|
||
|
|
||
|
class TextureAtlasEncryptionTestScene : public TestScene
|
||
|
{
|
||
|
public:
|
||
|
virtual void runThisTest();
|
||
|
};
|
||
|
|
||
|
#endif
|