mirror of https://github.com/axmolengine/axmol.git
20 lines
341 B
C++
20 lines
341 B
C++
#ifndef __EXTENSIONS_TEST_H__
|
|
#define __EXTENSIONS_TEST_H__
|
|
|
|
#include "../testBasic.h"
|
|
|
|
class ExtensionsMainLayer : public CCLayer
|
|
{
|
|
public:
|
|
virtual void onEnter();
|
|
void menuCallback(CCObject* pSender);
|
|
};
|
|
|
|
class ExtensionsTestScene : public TestScene
|
|
{
|
|
public:
|
|
virtual void runThisTest();
|
|
};
|
|
|
|
#endif /* __EXTENSIONS_TEST_H__ */
|