mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2025-12-21 01:36:02 +08:00
16 lines
251 B
C++
16 lines
251 B
C++
#ifndef _EXAMPLESCENE_H_
|
|
#define _EXAMPLESCENE_H_
|
|
|
|
#include "cocos2d.h"
|
|
|
|
class ExampleScene : public cocos2d::CCLayer {
|
|
public:
|
|
static cocos2d::CCScene* scene();
|
|
|
|
virtual bool init();
|
|
|
|
CREATE_FUNC(ExampleScene);
|
|
};
|
|
|
|
#endif // SPINE_EXAMPLESCENE_H_
|