2011-07-08 11:22:35 +08:00
|
|
|
#ifndef __BUG_914_H__
|
|
|
|
#define __BUG_914_H__
|
|
|
|
|
|
|
|
#include "BugsTest.h"
|
|
|
|
|
|
|
|
class Bug914Layer : public BugsTestBaseLayer
|
|
|
|
{
|
|
|
|
public:
|
2013-06-20 14:17:10 +08:00
|
|
|
static Scene* scene();
|
2011-07-08 11:22:35 +08:00
|
|
|
virtual bool init();
|
|
|
|
|
2013-10-23 16:14:03 +08:00
|
|
|
void onTouchesMoved(const std::vector<Touch*>& touches, Event * event);
|
|
|
|
void onTouchesBegan(const std::vector<Touch*>& touches, Event * event);
|
2013-06-20 14:17:10 +08:00
|
|
|
void restart(Object* sender);
|
2011-07-08 11:22:35 +08:00
|
|
|
|
2012-08-27 16:11:07 +08:00
|
|
|
CREATE_FUNC(Bug914Layer);
|
2011-07-08 11:22:35 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __BUG_914_H__
|