Advertisement
Guest User

Untitled

a guest
Feb 6th, 2016
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. #ifndef __GAME_SCENE_H__
  2. #define __GAME_SCENE_H__
  3.  
  4. #include "cocos2d.h"
  5.  
  6. USING_NS_CC;
  7.  
  8. class Game : public Layer
  9. {
  10. public:
  11.  
  12. static Scene* createScene();
  13.  
  14. virtual bool init();
  15. CREATE_FUNC(Game);
  16.  
  17. Size winSize;
  18.  
  19. void initData(); // 변수
  20. void initSmile(); //아이템으로 이용
  21.  
  22. bool onTouchBegan(Touch *touch, Event *unused_event);
  23. };
  24.  
  25. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement