SpriteLoader.h 604 B

1234567891011121314151617181920212223242526272829
  1. #ifndef SPRITELOADER_H_INCLUDED
  2. #define SPRITELOADER_H_INCLUDED
  3. #include <iostream>
  4. #include <string>
  5. #include <map>
  6. #include <SDL.h>
  7. class SpriteLoader
  8. {
  9. public:
  10. SpriteLoader();
  11. SpriteLoader(std::string folder);
  12. ~SpriteLoader();
  13. SDL_Surface* takeSprite(std::string nom);
  14. void addSprite(std::string nom, SDL_Surface* sprite);
  15. void assignFolder(std::string folder);
  16. private:
  17. std::string m_folder;
  18. std::map<std::string, SDL_Surface*>::iterator m_it;
  19. std::map<std::string, SDL_Surface*> m_paquet;
  20. };
  21. #endif // SPRITELOADER_H_INCLUDED