Sniper.h 337 B

1234567891011121314151617181920
  1. #ifndef SNIPER_H
  2. #define SNIPER_H
  3. #include "../IACtrl.h"
  4. class Sniper : public IACtrl
  5. {
  6. ///Méthodes
  7. public:
  8. Sniper(Persos_Gest* persosGest, bool allie = false);
  9. virtual ~Sniper();
  10. virtual void update();
  11. ///Attributs
  12. private:
  13. Uint16 m_focusID;
  14. Uint32 m_lastShot;
  15. };
  16. #endif // SNIPER_H