mirror of https://github.com/axmolengine/axmol.git
26 lines
411 B
C++
26 lines
411 B
C++
#ifndef _CURL_TEST_H_
|
|
#define _CURL_TEST_H_
|
|
|
|
#include "cocos2d.h"
|
|
#include "../testBasic.h"
|
|
|
|
class CurlTest : public Layer
|
|
{
|
|
public:
|
|
CurlTest();
|
|
~CurlTest();
|
|
|
|
void onTouchesEnded(const std::vector<Touch*>& touches, cocos2d::Event *event);
|
|
|
|
private:
|
|
cocos2d::Label* _label;
|
|
};
|
|
|
|
class CurlTestScene : public TestScene
|
|
{
|
|
public:
|
|
virtual void runThisTest();
|
|
};
|
|
|
|
#endif // _CURL_TEST_H_
|