1
0

Ball.h 370 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // Ball.h
  3. // RedCore2
  4. //
  5. // Created by Gabriel Capella on 31/05/17.
  6. //
  7. //
  8. #ifndef Ball_h
  9. #define Ball_h
  10. #include "cocos2d.h"
  11. class Ball : public cocos2d::Node {
  12. public:
  13. virtual bool init();
  14. void throwBall();
  15. // implement the "static create()" method manually
  16. CREATE_FUNC(Ball);
  17. private:
  18. };
  19. #endif /* Ball_h */