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

19 lines
438 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 BugsTestBase
2011-07-08 11:22:35 +08:00
{
public:
virtual bool init() override;
2011-07-08 11:22:35 +08:00
void onTouchesMoved(const std::vector<cocos2d::Touch*>& touches, cocos2d::Event* event);
void onTouchesBegan(const std::vector<cocos2d::Touch*>& touches, cocos2d::Event* event);
void restart(cocos2d::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__