Ball.h 416 B

123456789101112131415161718192021222324
  1. //
  2. // Ball.h
  3. // RedCore
  4. //
  5. #ifndef Ball_h
  6. #define Ball_h
  7. #include "cocos2d.h"
  8. class Ball : public cocos2d::Node {
  9. public:
  10. virtual bool init();
  11. void throwBall();
  12. CREATE_FUNC(Ball);
  13. bool superball;
  14. void setSuperball();
  15. void resetNormalball();
  16. private:
  17. cocos2d::DrawNode* ball_draw;
  18. cocos2d::DrawNode* superball_draw;
  19. };
  20. #endif /* Ball_h */