axmol/samples/Cpp/TestCpp/Classes/RotateWorldTest/RotateWorldTest.h

36 lines
515 B
C
Raw Normal View History

2010-08-23 13:58:57 +08:00
#ifndef _ROTATE_WORLD_TEST_H_
#define _ROTATE_WORLD_TEST_H_
#include "../testBasic.h"
class RotateWorldTestScene : public TestScene
{
public:
virtual void runThisTest();
};
class SpriteLayer : public Layer
2010-08-23 13:58:57 +08:00
{
public:
virtual void onEnter();
CREATE_FUNC(SpriteLayer)
2010-08-23 13:58:57 +08:00
};
class TestLayer : public Layer
2010-08-23 13:58:57 +08:00
{
public:
virtual void onEnter();
2010-08-23 13:58:57 +08:00
CREATE_FUNC(TestLayer)
2010-08-23 13:58:57 +08:00
};
class RotateWorldMainLayer : public Layer
2010-08-23 13:58:57 +08:00
{
public:
virtual void onEnter();
2010-08-23 13:58:57 +08:00
CREATE_FUNC(RotateWorldMainLayer)
2010-08-23 13:58:57 +08:00
};
#endif