skizzle/include/resource_manager.hpp

24 lines
482 B
C++
Raw Normal View History

2016-03-22 19:03:19 +00:00
#ifndef __PTF_RESOURCE_MANAGER_HPP__
#define __PTF_RESOURCE_MANAGER_HPP__
#include <SFML/Graphics.hpp>
#include <map>
#include <string>
class ResourceManager {
private:
std::map<std::string, sf::Texture> textures;
public:
~ResourceManager();
/**
* Récupère une image. Réutilise l'image déjà chargée
* si elle l'a déjà é, sinon, tente de la charger
* depuis son emplacement
*/
sf::Texture& getTexture(std::string name);
};
#endif