axmol/tests/cpp-tests/Classes/testBasic.h

27 lines
623 B
C
Raw Normal View History

#ifndef _TEST_BASIC_H_
#define _TEST_BASIC_H_
#include "cocos2d.h"
2014-07-29 18:08:40 +08:00
#include "audio/include/SimpleAudioEngine.h"
#include "VisibleRect.h"
2015-04-03 11:54:39 +08:00
/**
* TestScene is retained for compatibility with older versions.
* @warning It should soon be removed.
*/
class TestScene : public cocos2d::Scene
{
public:
2015-04-03 11:54:39 +08:00
TestScene(bool bPortrait = false, bool physics = false){}
virtual void onEnter() override {}
virtual void runThisTest() = 0;
};
// 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; }
#endif