ExampleScene.h 248 B

123456789101112131415
  1. #ifndef _EXAMPLESCENE_H_
  2. #define _EXAMPLESCENE_H_
  3. #include "cocos2d.h"
  4. class ExampleScene: public cocos2d::CCLayer {
  5. public:
  6. static cocos2d::CCScene* scene ();
  7. virtual bool init ();
  8. CREATE_FUNC (ExampleScene);
  9. };
  10. #endif // _EXAMPLESCENE_H_