#ifndef FOLLOWER_H #define FOLLOWER_H #include "../IACtrl.h" class Follower : public IACtrl { ///Méthodes public: Follower(Persos_Gest* persosGest, bool allie = false); virtual ~Follower(); virtual void update(); ///Attributs private: Uint16 m_focIDAllie; Uint16 m_focIDFoe; float m_vitesse; // €[0; 1] }; #endif // FOLLOWER_H