Files
dae16-VerhulstBram-GameProject/Game/TextureManager.h
Bram Verhulst eb4c7b4d76 Update Screen system
Added FuelScreen (Working buttons)
Added SellScreen (Nothing working)
2024-04-04 00:07:45 +02:00

20 lines
323 B
C++

#pragma once
#include <map>
#include "Texture.h"
class TextureManager
{
public:
static TextureManager * GetInstance();
Texture * GetTexture(const std::string& name);
private:
TextureManager() = default;
~TextureManager();
static TextureManager* m_pInstance;
std::map<std::string, Texture *> m_Textures {};
};