//
//  Ball.h
//  RedCore
//

#ifndef Ball_h
#define Ball_h

#include "cocos2d.h"

class Ball : public cocos2d::Node {
    public:
        virtual bool init();
        void throwBall();
        CREATE_FUNC(Ball);
};

#endif /* Ball_h */