mirror of https://github.com/axmolengine/axmol.git
35 lines
866 B
C++
35 lines
866 B
C++
#ifndef _PADDLE_H_
|
|
#define _PADDLE_H_
|
|
|
|
#include "cocos2d.h"
|
|
|
|
|
|
typedef enum tagPaddleState
|
|
{
|
|
kPaddleStateGrabbed,
|
|
kPaddleStateUngrabbed
|
|
} PaddleState;
|
|
|
|
class Paddle : public cocos2d::Sprite, public cocos2d::Clonable
|
|
{
|
|
PaddleState _state;
|
|
|
|
public:
|
|
Paddle(void);
|
|
virtual ~Paddle(void);
|
|
|
|
cocos2d::Rect getRect();
|
|
bool initWithTexture(cocos2d::Texture2D* aTexture) override;
|
|
virtual void onEnter() override;
|
|
virtual void onExit() override;
|
|
bool containsTouchLocation(cocos2d::Touch* touch);
|
|
bool onTouchBegan(cocos2d::Touch* touch, cocos2d::Event* event);
|
|
void onTouchMoved(cocos2d::Touch* touch, cocos2d::Event* event);
|
|
void onTouchEnded(cocos2d::Touch* touch, cocos2d::Event* event);
|
|
virtual Paddle* clone() const override;
|
|
|
|
static Paddle* createWithTexture(cocos2d::Texture2D* aTexture);
|
|
};
|
|
|
|
#endif
|