2011-07-08 11:22:35 +08:00
|
|
|
#ifndef __BUG_422_H__
|
|
|
|
#define __BUG_422_H__
|
|
|
|
|
|
|
|
#include "BugsTest.h"
|
|
|
|
|
2015-04-03 14:31:03 +08:00
|
|
|
class Bug422Layer : public BugsTestBase
|
2011-07-08 11:22:35 +08:00
|
|
|
{
|
|
|
|
public:
|
2015-04-03 14:31:03 +08:00
|
|
|
CREATE_FUNC(Bug422Layer);
|
|
|
|
|
2015-03-15 02:33:15 +08:00
|
|
|
virtual bool init() override;
|
2011-07-08 11:22:35 +08:00
|
|
|
|
|
|
|
void reset();
|
2013-06-20 14:17:10 +08:00
|
|
|
void check(Node* target);
|
2015-04-09 08:37:30 +08:00
|
|
|
void menuCallback(cocos2d::Ref* sender);
|
2011-07-08 11:22:35 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __BUG_422_H__
|