mirror of https://github.com/axmolengine/axmol.git
21 lines
322 B
C++
21 lines
322 B
C++
#ifndef _DRAW_PRIMITIVES_TEST_H_
|
|
#define _DRAW_PRIMITIVES_TEST_H_
|
|
|
|
#include "cocos2d.h"
|
|
#include "../testBasic.h"
|
|
|
|
class DrawPrimitivesTest : public CCLayer
|
|
{
|
|
public:
|
|
DrawPrimitivesTest();
|
|
virtual void draw();
|
|
};
|
|
|
|
class DrawPrimitivesTestScene : public TestScene
|
|
{
|
|
public:
|
|
virtual void runThisTest();
|
|
};
|
|
|
|
#endif
|