Affichable.h 403 B

12345678910111213141516171819202122
  1. #ifndef AFFICHABLE_H
  2. #define AFFICHABLE_H
  3. #include <iostream>
  4. #include <SDL.h>
  5. #include "../Structures/Vecteur.h"
  6. class Affichable
  7. {
  8. public:
  9. Affichable(SDL_Surface* img);
  10. virtual ~Affichable();
  11. void virtual afficher(const Vec &lookAt, SDL_Surface* screen);
  12. protected:
  13. SDL_Surface* m_img;
  14. SDL_Rect m_rect;
  15. Vec m_pos;
  16. };
  17. #endif // AFFICHABLE_H