Tir.h 631 B

123456789101112131415161718192021222324252627282930
  1. #ifndef TIR_H
  2. #define TIR_H
  3. #include <iostream>
  4. #include "../Structures/Affichable.h"
  5. #include "../Structures/Vecteur.h"
  6. class Tir : public Affichable
  7. {
  8. public:
  9. Tir(SDL_Surface* img, Vec pos, Vec visee, int degats, bool allie);
  10. virtual ~Tir();
  11. void virtual afficher(const Vec &lookAt, SDL_Surface* screen); // Empêche l'affichage si déjà encaissé
  12. void move();
  13. int encaisser(const Vec &pos, bool allie);
  14. bool exist() const;
  15. protected:
  16. int m_degats;
  17. bool m_exist;
  18. float m_vitesse;
  19. bool m_allie;
  20. Vec m_dir;
  21. };
  22. #endif // TIR_H