123456789101112131415161718 |
- #ifndef CHUNK_H
- #define CHUNK_H
- #include "../Structures/Affichable.h"
- #define LG_CHUNK 3000
- class Chunk : public Affichable
- {
- public:
- Chunk(SDL_Surface* imgDyn, int x, int y);
- virtual ~Chunk(); // Détruit l'image
- protected:
- };
- #endif // CHUNK_H
|