2011-07-08 11:22:35 +08:00
|
|
|
#ifndef __BUG_1159_H__
|
|
|
|
#define __BUG_1159_H__
|
|
|
|
|
|
|
|
#include "BugsTest.h"
|
|
|
|
|
|
|
|
class Bug1159Layer : public BugsTestBaseLayer
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual bool init();
|
2012-06-26 11:09:37 +08:00
|
|
|
virtual void onExit();
|
2013-06-20 14:17:10 +08:00
|
|
|
static Scene* scene();
|
2013-07-26 06:53:24 +08:00
|
|
|
void callBack(Object* sender);
|
2011-07-08 11:22:35 +08:00
|
|
|
|
2012-08-27 16:11:07 +08:00
|
|
|
CREATE_FUNC(Bug1159Layer);
|
2011-07-08 11:22:35 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __BUG_1159_H__
|