2012-04-19 14:35:52 +08:00
|
|
|
#ifndef _TEST_BASIC_H_
|
|
|
|
#define _TEST_BASIC_H_
|
|
|
|
|
|
|
|
#include "cocos2d.h"
|
2014-07-29 18:08:40 +08:00
|
|
|
#include "audio/include/SimpleAudioEngine.h"
|
2012-10-23 17:48:50 +08:00
|
|
|
#include "VisibleRect.h"
|
2012-04-19 14:35:52 +08:00
|
|
|
|
2012-04-27 18:47:49 +08:00
|
|
|
USING_NS_CC;
|
2013-09-17 23:03:33 +08:00
|
|
|
|
2013-06-20 14:17:10 +08:00
|
|
|
class TestScene : public Scene
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
|
|
|
public:
|
2014-05-02 07:55:28 +08:00
|
|
|
TestScene(bool bPortrait = false, bool physics = false);
|
2014-02-27 21:10:03 +08:00
|
|
|
virtual void onEnter() override;
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
virtual void runThisTest() = 0;
|
|
|
|
};
|
|
|
|
|
2013-06-07 08:12:28 +08:00
|
|
|
// C++ 11
|
|
|
|
|
2013-11-14 07:55:36 +08:00
|
|
|
#define CL(__className__) [](){ return __className__::create();}
|
2013-12-30 15:32:04 +08:00
|
|
|
#define CLN(__className__) [](){ auto obj = new __className__(); obj->autorelease(); return obj; }
|
2013-06-07 08:12:28 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
#endif
|