mirror of https://github.com/axmolengine/axmol.git
31 lines
606 B
C++
31 lines
606 B
C++
#ifndef _GAME_OVER_SCENE_H_
|
|
#define _GAME_OVER_SCENE_H_
|
|
|
|
#include "cocos2d.h"
|
|
|
|
class GameOverLayer : public cocos2d::LayerColor
|
|
{
|
|
public:
|
|
GameOverLayer():_label(NULL) {};
|
|
virtual ~GameOverLayer();
|
|
bool init();
|
|
CREATE_FUNC(GameOverLayer);
|
|
|
|
void gameOverDone();
|
|
|
|
CC_SYNTHESIZE_READONLY(cocos2d::LabelTTF*, _label, Label);
|
|
};
|
|
|
|
class GameOverScene : public cocos2d::Scene
|
|
{
|
|
public:
|
|
GameOverScene():_layer(NULL) {};
|
|
~GameOverScene();
|
|
bool init();
|
|
CREATE_FUNC(GameOverScene);
|
|
|
|
CC_SYNTHESIZE_READONLY(GameOverLayer*, _layer, Layer);
|
|
};
|
|
|
|
#endif // _GAME_OVER_SCENE_H_
|