2013-04-26 01:40:49 +08:00
|
|
|
#ifndef _TextureAtlasEncryption_TEST_H_
|
|
|
|
#define _TextureAtlasEncryption_TEST_H_
|
|
|
|
|
|
|
|
#include "cocos2d.h"
|
2015-04-03 14:31:03 +08:00
|
|
|
#include "../BaseTest.h"
|
2013-04-26 01:40:49 +08:00
|
|
|
#include <string>
|
|
|
|
|
2015-04-03 14:31:03 +08:00
|
|
|
DEFINE_TEST_SUITE(TextureAtlasEncryptionTests);
|
|
|
|
|
|
|
|
class TextureAtlasEncryptionDemo : public TestCase
|
2013-04-26 01:40:49 +08:00
|
|
|
{
|
|
|
|
public:
|
2015-04-03 14:31:03 +08:00
|
|
|
CREATE_FUNC(TextureAtlasEncryptionDemo);
|
|
|
|
|
2015-07-15 12:04:48 +08:00
|
|
|
virtual std::string title() const override;
|
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
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|