2013-06-04 17:38:43 +08:00
|
|
|
#ifndef __CC_PLAYERCONTROLLER_H__
|
|
|
|
#define __CC_PLAYERCONTROLLER_H__
|
|
|
|
|
|
|
|
#include "cocos2d.h"
|
|
|
|
#include "cocos-ext.h"
|
2013-10-16 11:19:01 +08:00
|
|
|
#include "cocostudio/CocoStudio.h"
|
2013-06-04 17:38:43 +08:00
|
|
|
|
|
|
|
|
2013-10-15 18:00:03 +08:00
|
|
|
class PlayerController : public cocostudio::ComController
|
2013-06-04 17:38:43 +08:00
|
|
|
{
|
|
|
|
protected:
|
|
|
|
PlayerController(void);
|
|
|
|
virtual ~PlayerController(void);
|
|
|
|
|
|
|
|
public:
|
2013-09-03 18:22:03 +08:00
|
|
|
virtual void onTouchesEnded(const std::vector<cocos2d::Touch*>& touches, cocos2d::Event *event) override;
|
2013-06-04 17:38:43 +08:00
|
|
|
|
|
|
|
public:
|
|
|
|
virtual bool init();
|
|
|
|
virtual void onEnter();
|
|
|
|
virtual void onExit();
|
|
|
|
virtual void update(float delta);
|
|
|
|
|
|
|
|
static PlayerController* create(void);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // __FUNDATION__CCCOMPONENT_H__
|