mirror of https://github.com/axmolengine/axmol.git
28 lines
575 B
C++
28 lines
575 B
C++
#ifndef __CC_PLAYERCONTROLLER_H__
|
|
#define __CC_PLAYERCONTROLLER_H__
|
|
|
|
#include "cocos2d.h"
|
|
#include "cocos-ext.h"
|
|
|
|
|
|
class PlayerController : public cocos2d::extension::ComController
|
|
{
|
|
protected:
|
|
PlayerController(void);
|
|
virtual ~PlayerController(void);
|
|
|
|
public:
|
|
virtual void ccTouchesEnded(cocos2d::Set *touches, cocos2d::Event *event);
|
|
|
|
public:
|
|
virtual bool init();
|
|
virtual void onEnter();
|
|
virtual void onExit();
|
|
virtual void update(float delta);
|
|
|
|
static PlayerController* create(void);
|
|
};
|
|
|
|
|
|
#endif // __FUNDATION__CCCOMPONENT_H__
|