2013-04-26 01:40:49 +08:00
|
|
|
#ifndef _TextureAtlasEncryption_TEST_H_
|
|
|
|
#define _TextureAtlasEncryption_TEST_H_
|
|
|
|
|
|
|
|
#include "cocos2d.h"
|
|
|
|
#include "../testBasic.h"
|
|
|
|
#include <string>
|
|
|
|
|
2013-06-20 14:17:10 +08:00
|
|
|
class TextureAtlasEncryptionDemo : public Layer
|
2013-04-26 01:40:49 +08:00
|
|
|
{
|
|
|
|
public:
|
2013-12-19 05:52:10 +08:00
|
|
|
virtual std::string title() const;
|
|
|
|
virtual std::string subtitle() const;
|
2014-02-27 21:10:03 +08:00
|
|
|
virtual void onEnter() override;
|
2013-04-26 01:40:49 +08:00
|
|
|
|
|
|
|
protected:
|
2013-06-15 14:03:30 +08:00
|
|
|
std::string _title;
|
2013-04-26 01:40:49 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
class TextureAtlasEncryptionTestScene : public TestScene
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual void runThisTest();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|