mirror of https://github.com/axmolengine/axmol.git
28 lines
588 B
C
28 lines
588 B
C
|
#ifndef __CC_PROJECTILECONTROLLER_H__
|
||
|
#define __CC_PROJECTILECONTROLLER_H__
|
||
|
|
||
|
#include "cocos2d.h"
|
||
|
#include "cocos-ext.h"
|
||
|
|
||
|
|
||
|
class ProjectileController : public cocos2d::extension::CCComController
|
||
|
{
|
||
|
protected:
|
||
|
ProjectileController(void);
|
||
|
virtual ~ProjectileController(void);
|
||
|
|
||
|
public:
|
||
|
virtual bool init();
|
||
|
virtual void onEnter();
|
||
|
virtual void onExit();
|
||
|
virtual void update(float delta);
|
||
|
|
||
|
static ProjectileController* create(void);
|
||
|
public:
|
||
|
void move(float flocationX, float flocationY);
|
||
|
void die();
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif // __FUNDATION__CCCOMPONENT_H__
|