mirror of
https://github.com/HowestDAE/dae16-VerhulstBram.git
synced 2025-12-18 03:59:20 +01:00
Reformat + Basic animation system
General fixes
This commit is contained in:
@@ -6,15 +6,15 @@
|
||||
class TextureManager
|
||||
{
|
||||
public:
|
||||
TextureManager() = default;
|
||||
static TextureManager * GetInstance();
|
||||
Texture * GetTexture(const std::string& name);
|
||||
|
||||
static TextureManager* GetInstance();
|
||||
|
||||
Texture* GetTexture(const std::string& name);
|
||||
|
||||
static TextureManager* m_pInstance;
|
||||
private:
|
||||
std::map<std::string, Texture*> m_Textures{};
|
||||
|
||||
};
|
||||
TextureManager() = default;
|
||||
~TextureManager();
|
||||
static TextureManager* m_pInstance;
|
||||
|
||||
private:
|
||||
std::map<std::string, Texture *> m_Textures {};
|
||||
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user