2013-06-04 17:38:43 +08:00
|
|
|
#ifndef __CC_PROJECTILECONTROLLER_H__
|
|
|
|
#define __CC_PROJECTILECONTROLLER_H__
|
|
|
|
|
|
|
|
#include "cocos2d.h"
|
|
|
|
#include "cocos-ext.h"
|
2013-10-15 18:00:03 +08:00
|
|
|
#include "CocoStudio.h"
|
2013-06-04 17:38:43 +08:00
|
|
|
|
2013-10-15 18:00:03 +08:00
|
|
|
class ProjectileController : public cocostudio::ComController
|
2013-06-04 17:38:43 +08:00
|
|
|
{
|
|
|
|
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__
|