GoldQuest/Perso.hpp

33 lines
424 B
C++
Raw Normal View History

2016-06-11 15:54:44 +02:00
#ifndef GQPERSO
#define GQPERSO
#include "..\C-Engine\CEngine.hpp"
#include "GUI.hpp"
class Control: public Script
{
public:
void Start();
void Update();
void Teleport( int x , int y , int level );
2016-06-11 15:54:44 +02:00
GUI * S_GUI;
Object * p_epee;
private:
int couldown;
int Direction_p;
int Vie;
int VieMax;
int BarreVie;
};
#endif // GQPERSO