axmol/tests/cpp-tests/Classes/BugsTest/Bug-624.h

29 lines
577 B
C
Raw Normal View History

2011-07-08 11:22:35 +08:00
#ifndef __BUG_624_H__
#define __BUG_624_H__
#include "BugsTest.h"
class Bug624Layer : public BugsTestBaseLayer
{
public:
virtual ~Bug624Layer();
2011-07-08 11:22:35 +08:00
virtual bool init();
2012-06-08 13:55:28 +08:00
void switchLayer(float dt);
virtual void onAcceleration(Acceleration* acc, Event* event);
2011-07-08 11:22:35 +08:00
CREATE_FUNC(Bug624Layer);
2011-07-08 11:22:35 +08:00
};
class Bug624Layer2 : public BugsTestBaseLayer
{
public:
virtual ~Bug624Layer2();
2011-07-08 11:22:35 +08:00
virtual bool init();
2012-06-08 13:55:28 +08:00
void switchLayer(float dt);
virtual void onAcceleration(Acceleration* acc, Event* event);
2011-07-08 11:22:35 +08:00
CREATE_FUNC(Bug624Layer2);
2011-07-08 11:22:35 +08:00
};
#endif // __BUG_624_H__