mirror of https://github.com/axmolengine/axmol.git
24 lines
388 B
C++
24 lines
388 B
C++
#ifndef _CURL_TEST_H_
|
|
#define _CURL_TEST_H_
|
|
|
|
#include "cocos2d.h"
|
|
#include "../BaseTest.h"
|
|
|
|
DEFINE_TEST_SUITE(CurlTests);
|
|
|
|
class CurlTest : public TestCase
|
|
{
|
|
public:
|
|
CREATE_FUNC(CurlTest);
|
|
|
|
CurlTest();
|
|
~CurlTest();
|
|
|
|
void onTouchesEnded(const std::vector<cocos2d::Touch*>& touches, cocos2d::Event *event);
|
|
|
|
private:
|
|
cocos2d::Label* _label;
|
|
};
|
|
|
|
#endif // _CURL_TEST_H_
|