mirror of https://github.com/axmolengine/axmol.git
22 lines
370 B
C++
22 lines
370 B
C++
#ifndef _TEST_BASIC_H_
|
|
#define _TEST_BASIC_H_
|
|
|
|
#include "cocos2d.h"
|
|
|
|
USING_NS_CC;
|
|
using namespace std;
|
|
|
|
class TestScene : public CCScene
|
|
{
|
|
public:
|
|
TestScene(bool bPortrait = false);
|
|
virtual void onEnter();
|
|
|
|
virtual void runThisTest() = 0;
|
|
|
|
// The CallBack for back to the main menu scene
|
|
virtual void MainMenuCallback(CCObject* pSender);
|
|
};
|
|
|
|
#endif
|