mirror of https://github.com/axmolengine/axmol.git
29 lines
619 B
C
29 lines
619 B
C
|
|
||
|
|
||
|
#ifndef __TestCpp__CocoStudioGUITest__
|
||
|
#define __TestCpp__CocoStudioGUITest__
|
||
|
|
||
|
#include "../../testBasic.h"
|
||
|
|
||
|
class CocoStudioGUIMainLayer : public Layer
|
||
|
{
|
||
|
public:
|
||
|
virtual void onEnter();
|
||
|
void onTouchesBegan(const std::vector<Touch*>& touches, Event *event);
|
||
|
// void onTouchesMoved(const std::vector<Touch*>& touches, Event *event);
|
||
|
|
||
|
private:
|
||
|
Point _beginPos;
|
||
|
Menu* _itemMenu;
|
||
|
};
|
||
|
|
||
|
class CocoStudioGUITestScene : public TestScene
|
||
|
{
|
||
|
public:
|
||
|
virtual void onEnter();
|
||
|
virtual void runThisTest();
|
||
|
void BackCallback(Ref* pSender);
|
||
|
};
|
||
|
|
||
|
#endif /* defined(__TestCpp__CocoStudioGUITest__) */
|