Chunk.h 276 B

123456789101112131415161718
  1. #ifndef CHUNK_H
  2. #define CHUNK_H
  3. #include "../Structures/Affichable.h"
  4. #define LG_CHUNK 3000
  5. class Chunk : public Affichable
  6. {
  7. public:
  8. Chunk(SDL_Surface* imgDyn, int x, int y);
  9. virtual ~Chunk(); // Détruit l'image
  10. protected:
  11. };
  12. #endif // CHUNK_H