// // Created by Priyal Patel on 11/21/21. // #include #include #include using std::unordered_map; using std::string; using namespace std; #ifndef MINESWEEPER_TEXTUREMANAGER_H #define MINESWEEPER_TEXTUREMANAGER_H class TextureManager { static unordered_maptextures; public: static void LoadTexture(string textureName); static sf::Texture& GetTexture(string textureName); static void Clear(); //call this once at end of main }; #endif //MINESWEEPER_TEXTUREMANAGER_H