mirror of https://github.com/axmolengine/axmol.git
24 lines
309 B
Plaintext
24 lines
309 B
Plaintext
|
namespace cocos2d {
|
||
|
|
||
|
typedef enum
|
||
|
{
|
||
|
ccNormalScene = 1 << 0,
|
||
|
ccTransitionScene = 1 << 1,
|
||
|
} ccSceneFlag;
|
||
|
|
||
|
|
||
|
class CCScene : public CCNode
|
||
|
{
|
||
|
|
||
|
CCScene();
|
||
|
virtual ~CCScene();
|
||
|
bool init();
|
||
|
static CCScene *node(void);
|
||
|
ccSceneFlag getSceneType(void);
|
||
|
|
||
|
|
||
|
};
|
||
|
}//namespace cocos2d
|
||
|
|
||
|
|