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

20 lines
418 B
C
Raw Normal View History

2011-07-08 11:22:35 +08:00
#ifndef __BUG_914_H__
#define __BUG_914_H__
#include "BugsTest.h"
class Bug914Layer : public BugsTestBaseLayer
{
public:
static Scene* scene();
2011-07-08 11:22:35 +08:00
virtual bool init();
void onTouchesMoved(const std::vector<Touch*>& touches, Event * event);
void onTouchesBegan(const std::vector<Touch*>& touches, Event * event);
void restart(Ref* sender);
2011-07-08 11:22:35 +08:00
CREATE_FUNC(Bug914Layer);
2011-07-08 11:22:35 +08:00
};
#endif // __BUG_914_H__