mirror of https://github.com/axmolengine/axmol.git
18 lines
307 B
C++
18 lines
307 B
C++
#ifndef __BUG_1159_H__
|
|
#define __BUG_1159_H__
|
|
|
|
#include "BugsTest.h"
|
|
|
|
class Bug1159Layer : public BugsTestBaseLayer
|
|
{
|
|
public:
|
|
virtual bool init();
|
|
virtual void onExit() override;
|
|
static Scene* scene();
|
|
void callBack(Ref* sender);
|
|
|
|
CREATE_FUNC(Bug1159Layer);
|
|
};
|
|
|
|
#endif // __BUG_1159_H__
|