Ball.h 237 B

123456789101112131415161718
  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. };
  14. #endif /* Ball_h */